:root {
  --bg: #050a06;
  --bg-elev: #081508;
  --surface: #0c1f0e;
  --text: #e6ffe6;
  --muted: #a3cfb6;
  --primary: #22ff99;
  --accent: #4fd17f;
  --success: #22ff99;
  --warning: #ffd166;
  --danger: #ff6b6b;
  --outline: rgba(34, 255, 153, 0.25);
  --card: rgba(12, 31, 14, 0.75);
  --radius: 14px;
  --ring: 0 0 0 2px var(--outline), 0 0 30px rgba(34,255,153,.2);
}

[data-theme="light"] {
  --bg: #e8eef0;
  --bg-elev: #f0f6f8;
  --surface: #f0f6f8;
  --text: #0b1220;
  --muted: #3d4961;
  --primary: #00cc66;
  --accent: #33dd77;
  --outline: rgba(0, 204, 102, 0.25);
  --card: rgba(240, 246, 248, 0.9);
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Orbitron', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile touch optimizations */
a, button {
  -webkit-tap-highlight-color: rgba(34, 255, 153, 0.2);
  touch-action: manipulation;
  cursor: pointer;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[data-theme="light"] body {
  background: var(--bg);
}

body:not([data-theme="light"]) {
  background: var(--bg);
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #031120; padding: 8px 12px; border-radius: 8px; }
.skip-link:focus { left: 10px; top: 10px; z-index: 100; }

#bg-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; }

.site-header {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px;
  background: linear-gradient(180deg, rgba(5,10,6,.85), rgba(5,10,6,.55)); backdrop-filter: blur(10px); border-bottom: 1px solid var(--outline);
}

[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(240,255,240,.85), rgba(240,255,240,.55)); backdrop-filter: blur(10px);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-text { font-family: Orbitron, sans-serif; letter-spacing: .12em; font-weight: 800; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.theme-toggle { background: transparent; border: 1px solid var(--outline); color: var(--text); border-radius: 10px; padding: 8px 10px; cursor: pointer; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a { 
  color: var(--text); 
  text-decoration: none; 
  padding: 10px 14px; 
  border-radius: 999px; 
  transition: .25s;
  -webkit-tap-highlight-color: rgba(34, 255, 153, 0.2);
  touch-action: manipulation;
  cursor: pointer;
}
.site-nav a:hover, .site-nav a:active { background: rgba(34,255,153,.08); }
.site-nav .cta { background: linear-gradient(90deg, var(--primary), var(--accent)); color: #051017; font-weight: 700; }

.section { padding: 72px 20px; }
.section-tight { padding: 48px 20px; }
.section-head { max-width: 1100px; margin: 0 auto 24px; padding: 0 4px; }
.section-title { font-family: Orbitron, sans-serif; font-size: 28px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 6px; }
.section-sub { color: var(--muted); margin: 0; }

.hero { display: grid; place-items: center; min-height: 72vh; }
.hero-content { max-width: 1400px; }
.hero-title { font-size: clamp(44px, 8vw, 108px); line-height: 0.98; margin: 0 0 16px; letter-spacing: .02em; }
.hero-title .accent { display: block; color: var(--primary); text-shadow: 0 0 18px rgba(34,255,153,.35); }
.hero-sub { color: var(--muted); margin: 0 0 28px; font-size: clamp(18px, 2.2vw, 28px); max-width: 920px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.stat { background: var(--card); border: 1px solid var(--outline); border-radius: var(--radius); padding: 18px 20px; display: flex; align-items: baseline; gap: 10px; box-shadow: none; }
.stat .num { font-family: Orbitron, sans-serif; font-weight: 800; color: var(--primary); font-size: clamp(22px, 2.4vw, 34px); }
.stat .label { color: var(--muted); }

/* Slider (hero) */
.slider { position: relative; min-height: 92vh; padding: 0; display: block; }
.defs-svg { position: absolute; width: 0; height: 0; }
.slider-viewport { position: relative; width: 100%; height: 100%; overflow: hidden; }
.slides { position: absolute; inset: 0; display: grid; grid-auto-flow: column; grid-auto-columns: 100%; align-items: stretch; }
.slide { position: relative; padding: 120px 20px 100px; display: grid; place-items: center; isolation: isolate; }
.slide.is-active { z-index: 2; }
.slide-bg { position: absolute; inset: 0; background:
  radial-gradient(50% 40% at 30% 30%, rgba(34,255,153,.18), transparent 60%),
  radial-gradient(50% 40% at 70% 65%, rgba(79,255,153,.16), transparent 60%),
  linear-gradient(180deg, rgba(7,15,9,.85), rgba(7,15,9,.4));
  opacity: .9; transform: translateZ(0);
}
[data-parallax] { will-change: transform; }
.slide-content { position: relative; z-index: 2; text-align: left; width: min(1400px, 92vw); }
.slide-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.slide-decor .orb { position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; opacity: .6; filter: blur(2px); }
.slide-decor .orb-sm { width: 260px; height: 260px; left: -60px; bottom: -60px; opacity: .5; }
.slide-decor .grid { position: absolute; left: 10%; top: 20%; width: 120px; height: 120px; fill: none; stroke: url(#grad-primary); stroke-width: 1.5; opacity: .5; }
.slide-decor .grid use { transform: rotate(45deg); transform-origin: 50% 50%; }
.slide-decor .star { position: absolute; right: 20%; bottom: 22%; width: 42px; height: 42px; fill: url(#grad-primary); opacity: .8; filter: drop-shadow(0 0 18px rgba(34,255,153,.4)); }
.slide-decor .star.s2 { left: 24%; top: 28%; width: 28px; height: 28px; opacity: .7; }

.slider-ui { position: absolute; left: 50%; transform: translateX(-50%); bottom: 24px; display: flex; align-items: center; gap: 14px; z-index: 3; }
.slider-ui .nav { background: rgba(5,10,6,.8); border: 1px solid var(--outline); color: var(--text); width: 42px; height: 42px; border-radius: 12px; cursor: pointer; backdrop-filter: blur(6px); }

[data-theme="light"] .slider-ui .nav { background: rgba(180, 190, 200, 0.8); }
.slider-ui .nav:hover { box-shadow: var(--ring); border-color: var(--primary); }
.pagination { display: flex; gap: 8px; padding: 6px 10px; background: rgba(5,10,6,.8); border: 1px solid var(--outline); border-radius: 999px; backdrop-filter: blur(6px); }

[data-theme="light"] .pagination { background: rgba(180, 190, 200, 0.8); }
.pagination button { width: 12px; height: 12px; border-radius: 999px; border: 1px solid var(--outline); background: rgba(34,255,153,.18); padding: 0; cursor: pointer; }
.pagination button[aria-selected="true"] { background: linear-gradient(90deg, var(--primary), var(--accent)); border-color: transparent; box-shadow: 0 0 0 2px rgba(34,255,153,.25); }

/* Slide transitions */
.slides { transition: transform .9s cubic-bezier(.2,.7,0,1); }
.slide { opacity: 0; transform: translateX(4%) scale(.995); transition: opacity .7s cubic-bezier(.2,.7,0,1), transform .7s cubic-bezier(.2,.7,0,1); }
.slide.is-active { opacity: 1; transform: none; }

/* Bigger scales for sections following slider */
.section .section-title { font-size: clamp(28px, 3.4vw, 56px); }
.section .section-sub { font-size: clamp(14px, 1.6vw, 20px); }
.price-card .price { font-size: clamp(24px, 2.2vw, 34px); }

@media (max-width: 860px) {
  .slide { padding: 90px 18px 90px; }
  .slider-ui { bottom: 16px; }
}

.cards-grid, .pricing-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.cards-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .price-card { background: var(--card); border: 1px solid var(--outline); border-radius: var(--radius); padding: 22px; box-shadow: none; }

.card h3, .price-card h3 { margin: 0 0 10px; font-family: Orbitron, sans-serif; letter-spacing: .08em; }
.card-img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; border: 1px solid var(--outline); margin: 8px 0 10px; }
.specs { margin: 0 0 16px; padding-left: 18px; color: var(--muted); }

.price { font-size: 28px; font-weight: 800; color: var(--success); margin: 0 0 12px; font-family: Orbitron, sans-serif; }

.btn { appearance: none; border: 1px solid var(--outline); background: rgba(5,10,6,.8); color: var(--text); padding: 12px 18px; border-radius: 14px; cursor: pointer; transition: transform .08s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease; font-size: 16px; }

[data-theme="light"] .btn { background: rgba(180, 190, 200, 0.8); }
.btn:hover { box-shadow: none; border-color: var(--primary); }

.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(90deg, var(--primary), var(--accent)); border-color: transparent; color: #051017; font-weight: 800; }
.btn-primary[data-open="booking-modal"],
[data-open="booking-modal"].btn-primary,
[data-open="booking-modal"].btn {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
/* Contact section submit reservation button */
#contact-form button[type="submit"],
.contact-form button[type="submit"],
#contact .btn.btn-primary[type="submit"] {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.btn-ghost { background: transparent; }
.btn-outline { background: rgba(34,255,153,.06); }

/* Zones: All Zone Prices button uses futuristic font */
.zone-actions .btn.btn-outline {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.store-badges { display: flex; gap: 10px; }
.store { display: inline-block; border: 1px solid var(--outline); padding: 8px 12px; border-radius: 10px; color: var(--text); text-decoration: none; }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.chips li { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--outline); background: rgba(34,255,153,.08); font-size: 15px; }

.locations-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 16px; }
.loc-card { background: var(--card); border: 1px solid var(--outline); border-radius: var(--radius); padding: 16px; }

[data-theme="light"] .loc-card { box-shadow: none; }
.map-wrap { position: relative; overflow: hidden; border-radius: 10px; border: 1px solid var(--outline); }
.map-wrap iframe { width: 100%; height: 260px; display: block; }

.site-footer { border-top: 1px solid var(--outline); background: rgba(5,10,6,.9); }

[data-theme="light"] .site-footer { background: rgba(180, 190, 200, 0.9); }
.footer-grid { max-width: 1100px; margin: 0 auto; padding: 24px 20px; display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; }
.footer-nav a { color: var(--muted); text-decoration: none; margin-right: 12px; }
.footer-nav a:hover { color: var(--text); }

.promo-banner { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: linear-gradient(90deg, rgba(34,255,153,.15), rgba(79,255,153,.1)); border: 1px solid var(--outline); border-radius: var(--radius); padding: 16px; }
.badge { font-family: Orbitron, sans-serif; font-weight: 800; letter-spacing: .1em; padding: 6px 10px; border-radius: 999px; background: var(--primary); color: #031120; }

.contact-form { max-width: 900px; margin: 0 auto; background: var(--card); border: 1px solid var(--outline); border-radius: var(--radius); padding: 16px; }

[data-theme="light"] .contact-form { box-shadow: none; }
.contact-form .grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
label { color: var(--muted); display: grid; gap: 6px; font-size: 14px; }
input, select, textarea { background: rgba(5,10,6,.8); border: 1px solid var(--outline); color: var(--text); padding: 10px 12px; border-radius: 10px; outline: none; }

[data-theme="light"] input, [data-theme="light"] select, [data-theme="light"] textarea { background: rgba(180, 190, 200, 0.8); }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: none; }

.form-actions { display: flex; gap: 10px; margin-top: 12px; }
.form-msg { margin-top: 8px; color: var(--muted); }

.modal { border: 0; border-radius: 16px; padding: 0; background: transparent; }
.modal::backdrop { background: rgba(2, 6, 12, .65); backdrop-filter: blur(4px); }
.modal-card { background: var(--surface); border: 1px solid var(--outline); border-radius: 16px; width: min(92vw, 520px); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.modal-head, .modal-foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(34,255,153,.12); }
.modal-foot { border-top: 1px solid rgba(34,255,153,.12); border-bottom: 0; }
.modal-body { padding: 14px 16px; display: grid; gap: 10px; }
.icon-btn { background: transparent; border: 1px solid var(--outline); color: var(--text); border-radius: 10px; padding: 6px 10px; cursor: pointer; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px) scale(.992); filter: blur(6px); will-change: opacity, transform, filter; }
.reveal.visible { opacity: 1; transform: none; filter: none; transition: opacity .75s cubic-bezier(.2,.7,0,1), transform .75s cubic-bezier(.2,.7,0,1), filter .75s cubic-bezier(.2,.7,0,1); }

/* New Zone Section Styles */
.zone-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.zone-btn {
  background: rgba(15, 23, 38, 0.8);
  border: 1px solid var(--outline);
  color: var(--muted);
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: rgba(34, 255, 153, 0.2);
  touch-action: manipulation;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .zone-btn {
  background: rgba(200, 210, 220, 0.6);
  color: var(--text);
}

[data-theme="light"] .zone-btn:hover {
  background: rgba(180, 190, 200, 0.8);
}

.zone-btn:hover {
  border-color: var(--primary);
  color: var(--text);
}

.zone-btn.active {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #051017;
}

.zone-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.zone-content {
  display: none;
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: none;
}


.zone-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.zone-title {
  font-family: Orbitron, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.zone-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 800px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  animation: fadeIn 0.4s ease-in-out;
}

.tier {
  background: rgba(7, 9, 15, 0.6);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-theme="light"] .tier {
  background: rgba(180, 190, 200, 0.8);
}

.tier-featured {
  background: rgba(34, 255, 153, 0.05);
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(34, 255, 153, 0.15);
}

[data-theme="light"] .tier-featured {
  box-shadow: 0 4px 16px rgba(34, 255, 153, 0.2);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.tier-name {
  font-family: Orbitron, sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.tier-discount {
  background: var(--success);
  color: #000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.tier-duration {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.tier-pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}

.pack-price, .sub-price {
  font-family: Orbitron, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.tier-labels {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.hardware-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* Cinema zone has 4 specs, so allow 4 columns */
[data-zone-content="cinema"] .hardware-specs {
  grid-template-columns: repeat(4, 1fr);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 9, 15, 0.4);
  border: 1px solid var(--outline);
  border-radius: 8px;
  padding: 16px;
}

[data-theme="light"] .spec-item {
  background: rgba(180, 190, 200, 0.6);
}

.spec-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(89%) saturate(2618%) hue-rotate(120deg) brightness(103%) contrast(101%);
  transition: filter 0.3s ease;
}

[data-theme="light"] .spec-icon img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(89%) saturate(2618%) hue-rotate(120deg) brightness(103%) contrast(101%);
}

.spec-item:hover .spec-icon img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(89%) saturate(2618%) hue-rotate(120deg) brightness(103%) contrast(101%);
}

/* LanGame Logo Button Styles */
.langame-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #e60012;
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.langame-book-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(230, 0, 18, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.2);
}

.langame-logo {
  width: 20px;
  height: 20px;
}

/* WhatsApp Button - Green LanGame Branded */
.langame-book-btn[onclick*="whatsapp"], 
.langame-book-btn[onclick*="wa.me"] {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.langame-book-btn[onclick*="whatsapp"]:hover, 
.langame-book-btn[onclick*="wa.me"]:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

/* Hide logo image for WhatsApp button only */
.langame-book-btn[onclick*="whatsapp"] .langame-logo,
.langame-book-btn[onclick*="wa.me"] .langame-logo {
  display: none !important;
}

.spec-details {
  flex: 1;
}

.spec-brand {
  font-family: Orbitron, sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.spec-model {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.zone-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-danger {
  background: #ff3333;
  border-color: #ff3333;
  color: white;
  font-weight: 700;
}

.btn-danger:hover {
  background: #ff1a1a;
  box-shadow: 0 0 0 2px rgba(255, 51, 51, 0.25);
}

/* Green Animated Background for Zones */
.zones-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

#zones {
  position: relative;
  overflow: hidden;
}

/* Reference Website Styles - Fixed */
.parallax { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.layer { position: absolute; inset: -10vh -10vw; }
.layer--bg { background: linear-gradient(180deg, rgba(5,10,6,0.2), rgba(8,15,8,0.1) 60%, rgba(5,10,6,0.2)); }
.layer--grid { 
  background-image: 
    radial-gradient(circle at 10px 10px, rgba(34,255,153,0.08) 2px, transparent 2px), 
    linear-gradient(transparent 31px, rgba(34,255,153,0.06) 32px), 
    linear-gradient(90deg, transparent 31px, rgba(34,255,153,0.06) 32px); 
  background-size: 64px 64px, 32px 32px, 32px 32px; 
  opacity: .15; 
  mix-blend-mode: screen; 
}
.layer--bands { background: repeating-linear-gradient(90deg, rgba(34,255,153,0.03) 0 2px, transparent 2px 8px); opacity: .1; }
.layer--particles { opacity: .25; }

[data-theme="light"] .layer--bg { background: none; }
[data-theme="light"] .layer--grid { background: none; }
[data-theme="light"] .layer--bands { background: none; }

/* New Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; backdrop-filter: blur(12px); background: rgba(5,10,6,0.85); box-shadow: 0 4px 16px rgba(34, 255, 153, 0.12), inset 0 0 0 1px rgba(34,255,153,0.08); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 16px; }
.brand { font-family: 'Orbitron', sans-serif; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text); text-shadow: 0 0 8px var(--primary); }
.brand span { color: var(--primary); }
.nav__links { display: flex; gap: 18px; margin-left: auto; }
.nav__link { 
  position: relative; 
  color: var(--text); 
  text-decoration: none; 
  padding: 8px 10px; 
  border-radius: 6px; 
  transition: transform .2s ease, color .2s ease;
  -webkit-tap-highlight-color: rgba(34, 255, 153, 0.2);
  touch-action: manipulation;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__link::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--outline); border-radius: 6px; box-shadow: 0 0 8px rgba(34,255,153,0.15); opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.nav__link:hover, .nav__link:active, .nav__link[aria-current="true"] { color: var(--primary); transform: translateY(-1px); }
.nav__link:hover::after, .nav__link:active::after, .nav__link[aria-current="true"]::after { opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 12px; }

[data-theme="light"] .nav { background: rgba(232,238,240,0.9); box-shadow: 0 4px 16px rgba(0, 204, 102, 0.12), inset 0 0 0 1px rgba(0,204,102,0.08); }
[data-theme="light"] .brand { text-shadow: 0 0 8px var(--primary); }
[data-theme="light"] .nav__link::after { box-shadow: 0 0 8px rgba(0,204,102,0.15); }

/* Hero Section */
.hero { padding-top: 112px; padding-bottom: 96px; min-height: 70vh; display: grid; place-items: center; position: relative; }
.hero__mesh { position: absolute; inset: 0; background: radial-gradient(1000px 600px at 50% 0%, rgba(34,255,153,0.12), transparent 60%), radial-gradient(800px 600px at 80% 120%, rgba(15,100,50,0.06), transparent 60%); pointer-events: none; animation: floatY 10s ease-in-out infinite; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.glow { text-shadow: 0 0 8px var(--primary), 0 0 16px var(--primary); animation: glowPulse 3s ease-in-out infinite; }
.hero h1 { font-family: 'Orbitron', sans-serif; font-size: 48px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 12px; }
.hero h1 span { color: var(--primary); }
.subtitle { color: var(--muted); margin-bottom: 28px; }
.cta-row { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.marquee { overflow: hidden; border-top: 1px solid var(--outline); border-bottom: 1px solid var(--outline); margin-top: 16px; }
.marquee__track { display: flex; gap: 48px; padding: 12px 0; animation: scrollX 18s linear infinite; width: max-content; will-change: transform; }
.marquee__track span { color: var(--muted); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }

[data-theme="light"] .hero__mesh { background: none; }
[data-theme="light"] .subtitle { color: var(--muted); }

/* Reviews Section */
.reviews { display: flex; gap: 24px; align-items: center; }
.counter__value { font-size: 40px; font-family: 'Orbitron', sans-serif; color: var(--primary); text-shadow: 0 0 10px var(--primary); }
.rating__value { font-size: 28px; }
.micro { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* Buttons */
.btn { 
  position: relative; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  padding: 12px 18px; 
  border-radius: 10px; 
  text-decoration: none; 
  color: var(--text); 
  border: 1px solid var(--outline); 
  box-shadow: 0 0 8px rgba(34,255,153,0.15), inset 0 0 4px rgba(34,255,153,0.08); 
  transform: translateZ(0); 
  will-change: transform; 
  transition: transform .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: rgba(34, 255, 153, 0.2);
  touch-action: manipulation;
  min-height: 44px;
}
.btn::before, .btn::after { content: ""; position: absolute; inset: -2px; border-radius: 12px; pointer-events: none; }
.btn::before { border: 1px solid var(--outline); filter: blur(1px); opacity: 0.5; }
.btn::after { box-shadow: 0 0 16px rgba(34,255,153,0.15); opacity: .5; }
.btn:hover, .btn:active { transform: scale(1.02); box-shadow: 0 0 12px rgba(34,255,153,0.25), inset 0 0 6px rgba(34,255,153,0.12); }
.btn--primary { background: linear-gradient(90deg, rgba(34,255,153,0.15), rgba(15,100,50,0.08)); color: var(--primary); }
.btn--ghost { background: transparent; }

[data-theme="light"] .btn { border: 1px solid var(--outline); box-shadow: 0 0 8px rgba(0,170,85,0.15), inset 0 0 4px rgba(0,170,85,0.08); }
[data-theme="light"] .btn::before { border: 1px solid var(--outline); }
[data-theme="light"] .btn::after { box-shadow: 0 0 16px rgba(0,170,85,0.15); }
[data-theme="light"] .btn:hover { box-shadow: 0 0 12px rgba(0,170,85,0.25), inset 0 0 6px rgba(0,170,85,0.12); }
[data-theme="light"] .btn--primary { background: linear-gradient(90deg, rgba(0,170,85,0.12), rgba(34,204,102,0.06)); }

/* Scroll Reveal Animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .45s ease, transform .45s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes glowPulse { 0%,100% { filter: drop-shadow(0 0 4px rgba(34,255,153,0.2)); } 50% { filter: drop-shadow(0 0 8px rgba(34,255,153,0.35)); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Section Styling */
.section { position: relative; padding: 100px 0; border-top: 1px solid var(--outline); }
.section__banner { display: none; }

[data-theme="light"] .section__banner { background: none; }

/* Update body font */
body { font-family: 'Orbitron', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif; }

/* Responsive */
@media (max-width: 1100px) { 
  .cards-grid, .pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .pricing-tiers { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .hardware-specs { grid-template-columns: repeat(2, 1fr); }
  [data-zone-content="cinema"] .hardware-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-stats { grid-template-columns: 1fr; }
  .cards-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; }
  /* Keep nav links visible on mobile with 2 rows */
  .nav { background: rgba(5,10,6,0.75); backdrop-filter: blur(12px); }
  .nav__inner { flex-wrap: wrap; padding: 8px 16px 6px; min-height: auto; }
  .brand { order: 1; font-size: 14px; flex-shrink: 0; }
  .nav__actions { order: 2; margin-left: auto; flex-shrink: 0; }
  .nav__links { display: flex !important; flex-wrap: wrap; justify-content: center; width: 100%; order: 3; margin-left: 0; gap: 8px; margin-top: 6px; }
  .nav__link { padding: 8px 12px; font-size: 13px; white-space: nowrap; }

  .hero h1 { font-size: 32px; }
  .section { padding: 72px 0; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .hardware-specs { grid-template-columns: 1fr; }
  [data-zone-content="cinema"] .hardware-specs { grid-template-columns: 1fr; }
  .zone-buttons { gap: 8px; }
  .zone-btn { padding: 10px 16px; font-size: 14px; }
}
@media (max-width: 560px) { 
  .cards-grid, .pricing-grid { grid-template-columns: 1fr; } 
  .contact-form .grid { grid-template-columns: 1fr; }
  .zone-actions { flex-direction: column; }
  /* Center reduced window notice on mobile */
  .pricing-notice { 
    justify-content: center; 
    text-align: center; 
    flex-wrap: wrap; 
    gap: 8px; 
  }
}

/* LanGame Cutout Container */
.langame-cutout-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(5,10,6,1) 0%, rgba(26,5,5,1) 25%, rgba(5,10,6,1) 50%, rgba(10,10,10,1) 75%, rgba(5,10,6,1) 100%);
  border: 3px solid #e60012;
  border-radius: 24px;
  padding: 80px 60px;
  overflow: hidden;
  box-shadow: 
    0 0 30px rgba(230, 0, 18, 0.4),
    inset 0 0 30px rgba(230, 0, 18, 0.1);
  animation: redOutlineGlow 3s ease-in-out infinite alternate;
}

@keyframes redOutlineGlow {
  0% { 
    border-color: #e60012;
    box-shadow: 
      0 0 30px rgba(230, 0, 18, 0.4),
      inset 0 0 30px rgba(230, 0, 18, 0.1);
  }
  100% { 
    border-color: #ff1a2e;
    box-shadow: 
      0 0 50px rgba(230, 0, 18, 0.6),
      inset 0 0 50px rgba(230, 0, 18, 0.2);
  }
}

/* Integrated Background Canvas */
.langame-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Animated Background Effects */
.langame-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.3) 0%, rgba(255, 26, 46, 0.1) 50%, transparent 100%);
  animation: floatOrb 8s ease-in-out infinite;
  z-index: 1;
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 40%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(230, 0, 18, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 0, 18, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  animation: gridPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

.pulse-ring {
  position: absolute;
  border: 2px solid rgba(230, 0, 18, 0.3);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
  z-index: 1;
}

.ring-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.ring-2 {
  width: 200px;
  height: 200px;
  bottom: 30%;
  right: 25%;
  animation-delay: 1.5s;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Main Container */
.langame-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 500px;
}

/* Left Content */
.langame-content {
  max-width: 600px;
}

.langame-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(230, 0, 18, 0.1);
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.langame-badge-logo {
  width: 24px;
  height: 24px;
  background: transparent;
}

.langame-badge span {
  color: #ff1a2e;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.langame-title {
  font-size: 4rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.langame-title-highlight {
  color: #ff1a2e;
  text-shadow: 
    0 0 20px rgba(230, 0, 18, 0.5),
    0 0 40px rgba(230, 0, 18, 0.3);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { 
    text-shadow: 
      0 0 20px rgba(230, 0, 18, 0.5),
      0 0 40px rgba(230, 0, 18, 0.3);
  }
  100% { 
    text-shadow: 
      0 0 30px rgba(230, 0, 18, 0.8),
      0 0 60px rgba(230, 0, 18, 0.5);
  }
}

.langame-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Features List */
.langame-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 0, 18, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(230, 0, 18, 0.5);
  box-shadow: 0 8px 32px rgba(230, 0, 18, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e60012, #ff1a2e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(230, 0, 18, 0.3);
  flex-shrink: 0;
}

.feature-icon-inner {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.feature-icon-img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.feature-text h3 {
  color: #ff1a2e;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.discount {
  color: #ff1a2e;
  font-weight: 700;
}

/* Download Buttons */
.langame-download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn {
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1);
}

.download-btn img {
  height: 60px;
  width: auto;
}

/* Futuristic Dashboard */
.langame-dashboard-container {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Hub */
.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hub-core {
  position: relative;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.3), rgba(255, 26, 46, 0.1));
  border: 2px solid rgba(230, 0, 18, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: hubPulse 2s ease-in-out infinite;
}

.hub-logo {
  width: 60px;
  height: 60px;
  background: transparent;
}

.hub-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 50%;
  animation: hubPulseRing 2s ease-out infinite;
}

@keyframes hubPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(230, 0, 18, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(230, 0, 18, 0.6); }
}

@keyframes hubPulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hub-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hub-ring {
  position: absolute;
  border: 1px solid rgba(230, 0, 18, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 180px;
  height: 180px;
  animation: ringRotate 20s linear infinite;
}

.ring-2 {
  width: 240px;
  height: 240px;
  animation: ringRotate 30s linear infinite reverse;
}

.ring-3 {
  width: 300px;
  height: 300px;
  animation: ringRotate 40s linear infinite;
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Data Cards */
.data-card {
  position: absolute;
  width: 140px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(15px);
  animation: cardFloat 6s ease-in-out infinite;
  z-index: 5;
}

.card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 20%;
  left: 5%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4.5s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-icon {
  font-size: 16px;
}

.card-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: statusBlink 2s ease-in-out infinite;
}

.card-status.online {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

.card-status.active {
  background: #ff6b00;
  box-shadow: 0 0 10px #ff6b00;
}

.card-status.processing {
  background: #0088ff;
  box-shadow: 0 0 10px #0088ff;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.card-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.card-value {
  color: #ff1a2e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e60012, #ff1a2e);
  border-radius: 2px;
  animation: progressPulse 3s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; box-shadow: 0 0 10px rgba(230, 0, 18, 0.5); }
}

/* Holographic Elements */
.holo-element {
  position: absolute;
  padding: 8px 16px;
  background: linear-gradient(45deg, rgba(230, 0, 18, 0.1), rgba(255, 26, 46, 0.05));
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: holoFloat 8s ease-in-out infinite;
  z-index: 3;
}

.holo-1 {
  top: 13%;
  right: 43%;
  animation-delay: 2s;
}

.holo-2 {
  top: 40%;
  right: 18%;
  animation-delay: 5s;
}

.holo-3 {
  bottom: 18%;
  left: 43%;
  animation-delay: 3.5s;
}

.holo-4 {
  bottom: 40%;
  left: 8%;
  animation-delay: 6.5s;
}

@keyframes holoFloat {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
}

.holo-content {
  color: #ff1a2e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(230, 0, 18, 0.5);
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.connection-svg {
  width: 100%;
  height: 100%;
}

.connection-path {
  stroke-dasharray: 5, 5;
  animation: connectionFlow 4s linear infinite;
}

.path-1 { animation-delay: 0s; }
.path-2 { animation-delay: 1.3s; }
.path-3 { animation-delay: 2.6s; }

@keyframes connectionFlow {
  0% { stroke-dashoffset: 0; opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { stroke-dashoffset: -20; opacity: 0.3; }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .langame-cutout-container {
    margin: 0 20px;
    padding: 40px 30px;
  }
  
  .langame-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .langame-title {
    font-size: 3rem;
  }
  
  .langame-dashboard-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .langame-cutout-container {
    margin: 0 10px;
    padding: 30px 20px 420px;
    position: relative;
  }
  
  .langame-title {
    font-size: 2.5rem;
  }
  
  .langame-container {
    gap: 30px;
  }
  
  .langame-dashboard-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto 80px;
  }

  /* Scale down decorative elements to fit mobile */
  .hub-core {
    width: 80px;
    height: 80px;
  }
  
  .hub-logo {
    width: 40px;
    height: 40px;
  }
  
  .hub-ring.ring-1 {
    width: 120px;
    height: 120px;
  }
  
  .hub-ring.ring-2 {
    width: 160px;
    height: 160px;
  }
  
  .hub-ring.ring-3 {
    width: 200px;
    height: 200px;
  }
  
  .data-card {
    width: 100px;
    padding: 8px;
    font-size: 10px;
  }
  
  .card-icon {
    font-size: 12px;
  }
  
  .card-title {
    font-size: 8px;
  }
  
  .card-value {
    font-size: 12px;
  }
  
  /* Hide holo elements on mobile */
  .holo-element {
    display: none;
  }
  
  .holo-3,
  .holo-4 {
    display: none;
  }
  
  .floating-orb {
    opacity: 0.4;
  }
  
  .orb-1 {
    width: 120px;
    height: 120px;
  }
  
  .orb-2 {
    width: 80px;
    height: 80px;
  }
  
  .orb-3 {
    width: 60px;
    height: 60px;
  }
  
  .grid-overlay {
    opacity: 0.1;
  }

  /* Move download buttons below logo at bottom of banner */
  .langame-features {
    margin-bottom: 30px;
  }
  
  .langame-download-buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 25;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  .langame-download-buttons .download-btn {
    flex: 1;
    max-width: 180px;
  }
  
  .langame-download-buttons .download-btn img {
    height: 40px;
    width: 100%;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon-img {
    width: 24px;
    height: 24px;
  }
  
  /* Adjust card positions on mobile to prevent overlap */
  .data-card.card-3 {
    right: 3%;
    bottom: 22%;
  }
  
  .card-title {
    font-size: 9px;
  }
  
  .card-value {
    font-size: 14px;
  }
}

/* Mobile centering and portrait glow fixes */
@media (max-width: 860px) {
  .hero .container { text-align: center; }
  .hero h1 { text-align: center; }
  .subtitle { text-align: center; }
  .cta-row { justify-content: center; }
  .section-head { text-align: center; }
}

/* Note: keep all background effects in all orientations; do not disable visuals */

/* Global overflow safety to avoid horizontal scrolling */
html { overflow-x: hidden; max-width: 100vw; }
body, .container, .section, .nav, .nav__inner, .hero, .cards-grid, .pricing-grid { max-width: 100vw; }
img { max-width: 100%; height: auto; }

/* Center common sections content on small screens */
@media (max-width: 560px) {
  .section-head, .reviews, .cards-grid, .pricing-grid, .chips { text-align: center; justify-content: center; }
}

/* Extra-compact mobile UI (phones) */
@media (max-width: 480px) {
  /* Top bar sizing */
  .nav__inner { padding: 6px 12px 4px; }
  .brand { font-size: 13px; letter-spacing: 1px; }
  .nav__links { gap: 6px; margin-top: 5px; }
  .nav__link { padding: 7px 10px; font-size: 12px; }
  .nav__actions { gap: 8px; }
  .theme-toggle { padding: 6px 8px; font-size: 12px; border-radius: 8px; }

  /* Headings and copy */
  .hero h1 { font-size: 26px; letter-spacing: 1px; }
  .subtitle { font-size: 14px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 22px; letter-spacing: .08em; }
  .section-sub { font-size: 13px; }

  /* Buttons */
  .btn { padding: 10px 14px; font-size: 13px; border-radius: 10px; }
  .langame-book-btn { padding: 10px 14px; font-size: 12px; }
  .cta-row { gap: 10px; }

  /* Grids and chips */
  .cards-grid, .pricing-grid { gap: 12px; }
  .chips li { padding: 8px 12px; font-size: 13px; }

  /* Reviews compact */
  .counter__value { font-size: 28px; }
  .rating__value { font-size: 20px; }

  /* Zones content */
  .zone-btn { padding: 8px 12px; font-size: 12px; }
  .tier { padding: 14px; }
  .pack-price, .sub-price { font-size: 22px; }

  /* Langame section container constraints */
  .langame-cutout-container { padding: 24px 16px; border-width: 2px; border-radius: 16px; }
  .langame-title { font-size: 1.8rem; }
}

/* Futuristic Pricing Panels */
.pricing-notice { max-width: 1100px; margin: 0 auto 18px; padding: 10px 14px; display: flex; align-items: center; gap: 12px; color: var(--muted); border: 1px solid var(--outline); border-radius: 12px; background: rgba(34,255,153,.06); }
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: Orbitron, sans-serif; font-weight: 800; letter-spacing: .08em; padding: 6px 10px; border-radius: 999px; }
.badge--reduced { background: linear-gradient(90deg, var(--primary), var(--accent)); color: #051017; }

.pricing-panels { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1200px) { .pricing-panels { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 900px) { .pricing-panels { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .pricing-panels { grid-template-columns: 1fr; } }

.price-panel { position: relative; background: linear-gradient(180deg, rgba(5,10,6,.9), rgba(5,10,6,.6)); border: 1px solid var(--outline); border-radius: 18px; overflow: hidden; box-shadow: none; isolation: isolate; }
.price-panel::before { content: ""; position: absolute; inset: -1px; border-radius: 18px; pointer-events: none; background: radial-gradient(60% 40% at 50% 0%, rgba(34,255,153,.12), transparent 60%); z-index: 0; }
.price-head { position: relative; z-index: 1; padding: 16px 18px 10px; border-bottom: 1px solid rgba(34,255,153,.12); display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.zone-name { margin: 0; font-family: Orbitron, sans-serif; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 18px; }
.head-meta { display: flex; gap: 8px; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--outline); background: rgba(34,255,153,.06); font-size: 12px; color: var(--muted); }

.price-rows { position: relative; z-index: 1; display: grid; gap: 0; }
.row { display: grid; grid-template-columns: 1.4fr .8fr .8fr; padding: 12px 16px; align-items: center; }
.row:nth-child(odd):not(.row--header) { background: rgba(34,255,153,.04); }
.row--header { font-family: Orbitron, sans-serif; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; color: var(--muted); background: rgba(34,255,153,.08); border-top: 1px solid rgba(34,255,153,.12); }
.row .col { display: flex; align-items: center; gap: 10px; }
.row .col.muted { color: rgba(255,255,255,.35); }

.price-foot { padding: 14px 16px 16px; border-top: 1px solid rgba(34,255,153,.12); display: flex; justify-content: flex-end; }
.price-panel .btn-primary { font-family: Orbitron, sans-serif; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }

@media (max-width: 560px) {
  .row { grid-template-columns: 1fr .8fr .8fr; padding: 10px 12px; }
  .row .col { font-size: 13px; }
  .price-head { padding: 14px; }
  .zone-name { font-size: 16px; }
}

/* Pricing Modal Styles */
.pricing-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  margin: 0;
}

.pricing-modal::backdrop {
  background: rgba(5, 10, 6, 0.95);
  backdrop-filter: blur(8px);
}

.pricing-modal-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34, 255, 153, 0.08), transparent 70%);
  pointer-events: none;
}

.pricing-modal-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  height: 100%;
  overflow-y: auto;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--outline);
  background: var(--card);
  color: var(--text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-modal-close:hover {
  border-color: var(--primary);
  background: rgba(34, 255, 153, 0.1);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(34, 255, 153, 0.3);
}

.pricing-modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(34, 255, 153, 0.3);
}

.pricing-modal-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.pricing-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 255, 153, 0.2);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-featured {
  border: 2px solid var(--primary);
  background: rgba(34, 255, 153, 0.03);
}

.pricing-card-featured::before {
  opacity: 1;
}

.pricing-card-premium {
  border: 2px solid #ff6b35;
  background: rgba(255, 107, 53, 0.03);
}

.pricing-card-premium::before {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  opacity: 1;
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--outline);
}

.pricing-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.pricing-card-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 255, 153, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.spec-chip {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(34, 255, 153, 0.08);
  border: 1px solid rgba(34, 255, 153, 0.2);
  color: var(--text);
  font-weight: 600;
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-notice {
  text-align: center;
  padding: 8px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  color: #ffc107;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-section {
  background: rgba(7, 9, 15, 0.4);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 16px;
}

.pricing-section-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(34, 255, 153, 0.2);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}

.pricing-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row span:first-child {
  color: var(--muted);
}

.pricing-row .price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

.pricing-modal-footer {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.pricing-modal-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-modal-note strong {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 860px) {
  .pricing-modal-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .pricing-modal-content {
    padding: 30px 16px;
  }
}

@media (max-width: 560px) {
  .pricing-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-modal-title {
    font-size: 28px;
  }
  
  .pricing-modal-close {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

/* Light theme overrides for Pricing (EUR) panels to match light button style */
[data-theme="light"] .pricing-notice { background: rgba(180, 190, 200, 0.8); }
[data-theme="light"] .chip { background: rgba(180, 190, 200, 0.6); color: var(--text); }
[data-theme="light"] .price-panel { background: rgba(180, 190, 200, 0.8); }
[data-theme="light"] .price-panel::before { background: none; }
[data-theme="light"] .row--header { background: rgba(180, 190, 200, 0.9); color: var(--muted); border-top: 1px solid rgba(0, 204, 102, 0.12); }
[data-theme="light"] .row:nth-child(odd):not(.row--header) { background: rgba(200, 210, 220, 0.6); }
[data-theme="light"] .price-foot { border-top: 1px solid rgba(0, 204, 102, 0.12); }
