
    :root {
      --bg-void: #04050d;
      --bg-deep: #070a18;
      --bg-card: #0c1128;
      --bg-elevated: #111830;
      --neon-cyan: #00f5ff;
      --neon-purple: #b347ff;
      --neon-gold: #ffd700;
      --neon-green: #39ff14;
      --accent-pink: #ff2d78;
      --text-primary: #e8eeff;
      --text-muted: #6b7fa8;
      --text-dim: #3a4a6b;
      --border-glow: rgba(0,245,255,0.15);
      --border-subtle: rgba(255,255,255,0.06);
      --font-display: 'Rajdhani', sans-serif;
      --font-body: 'Exo 2', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --grad-cyan: linear-gradient(135deg, #00f5ff, #0066ff);
      --grad-purple: linear-gradient(135deg, #b347ff, #6600cc);
      --grad-gold: linear-gradient(135deg, #ffd700, #ff8c00);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-void);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: default;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg-void); }
    ::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 2px; }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px;
      pointer-events: none;
      opacity: 0.5;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 4rem;
      background: rgba(4,5,13,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.8rem; font-weight: 700; letter-spacing: 2px;
      background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;   /* remove underline */
      display: inline-block;
      cursor: pointer; transition: all 0.3s;
    }
    .nav-logo span { color: var(--neon-purple); -webkit-text-fill-color: var(--neon-purple); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--text-muted); text-decoration: none;
      font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 1px; font-weight: 600;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--neon-cyan); }
    .nav-cta {
      background: transparent;
      border: 1px solid var(--neon-cyan);
      color: var(--neon-cyan);
      padding: 0.5rem 1.5rem;
      font-family: var(--font-display); font-weight: 700; letter-spacing: 1px;
      cursor: pointer; transition: all 0.3s;
      text-decoration: none;   /* remove underline */
      display: inline-block;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .nav-cta:hover { background: var(--neon-cyan); color: var(--bg-void); box-shadow: 0 0 20px rgba(0,245,255,0.4); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 25px; height: 2px; background: var(--neon-cyan); }

    /* ─── HERO ─── */
    #hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      padding: 8rem 2rem 4rem;
      overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    }
    .hero-orb-1 {
      position: absolute; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(179,71,255,0.12) 0%, transparent 70%);
      top: -100px; right: -100px; z-index: 0;
      animation: pulse-orb 4s ease-in-out infinite;
    }
    .hero-orb-2 {
      position: absolute; width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(0,245,255,0.1) 0%, transparent 70%);
      bottom: 0; left: -50px; z-index: 0;
      animation: pulse-orb 4s ease-in-out infinite 2s;
    }
    @keyframes pulse-orb { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
    .hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(0,245,255,0.08); border: 1px solid rgba(0,245,255,0.2);
      padding: 0.4rem 1rem; border-radius: 2px;
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--neon-cyan);
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 1.5rem;
      animation: fadeInDown 0.8s ease both;
    }
    .hero-badge::before { content:'●'; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }
    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 700; line-height: 1.05;
      letter-spacing: 2px;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease 0.2s both;
    }
    .hero-h1 .line-glow {
      display: block;
      background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      filter: drop-shadow(0 0 30px rgba(0,245,255,0.4));
    }
    .hero-h1 .line-white { display: block; color: #fff; }
    .hero-sub {
      font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem;
      font-weight: 300; letter-spacing: 0.5px;
      animation: fadeInUp 0.8s ease 0.4s both;
    }
    .hero-sub strong { color: var(--neon-purple); font-weight: 600; }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
    .btn-primary {
      padding: 0.9rem 2.5rem;
      background: var(--grad-cyan);
      color: var(--bg-void); font-family: var(--font-display);
      font-size: 1rem; font-weight: 700; letter-spacing: 2px;
      border: none; cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.3s;
      box-shadow: 0 0 30px rgba(0,245,255,0.3);
    }
    .btn-primary:hover { box-shadow: 0 0 50px rgba(0,245,255,0.6); transform: translateY(-2px); }
    .btn-secondary {
      padding: 0.9rem 2.5rem;
      background: transparent;
      color: var(--text-primary); font-family: var(--font-display);
      font-size: 1rem; font-weight: 700; letter-spacing: 2px;
      border: 1px solid var(--border-glow); cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.3s;
    }
    .btn-secondary:hover { border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 20px rgba(179,71,255,0.2); transform: translateY(-2px); }
    .hero-stats {
      display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
      margin-top: 4rem; padding-top: 3rem;
      border-top: 1px solid var(--border-subtle);
      animation: fadeInUp 0.8s ease 0.8s both;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
      background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
    @keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)} }
    @keyframes fadeInUp { from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)} }

    /* ─── SECTIONS COMMON ─── */
    section { position: relative; z-index: 1; padding: 6rem 2rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-tag {
      font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 3px;
      color: var(--neon-cyan); text-transform: uppercase;
      margin-bottom: 0.75rem; display: block;
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; letter-spacing: 1px; line-height: 1.1;
      margin-bottom: 1rem;
    }
    .section-title .accent { background: var(--grad-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .section-sub { color: var(--text-muted); max-width: 600px; font-size: 1rem; }

    /* BUY GAMING SOURCE CODE */
    /* Section Container - White Background */
    .nexagame-info-container {
        background-color: #ffffff;
        padding: 80px 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        color: #333333; /* Dark text for readability */
    }

    .nexagame-info-content {
        max-width: 1100px;
        width: 100%;
        text-align: center;
    }

    /* Heading - Centered Green Text */
    .nexagame-info-heading {
        color: #22c55e;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    /* Paragraph Body Styling */
    .nexagame-info-body {
        text-align: left; /* Left aligned as per screenshot */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    .nexagame-info-body p {
        margin-bottom: 25px;
    }

    /* Bold text color matching the UI */
    .nexagame-info-body strong {
        color: #000000;
        font-weight: 700;
    }

    /* Action Area */
    .nexagame-info-action {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    /* Dark Pill Button "LET'S TALK" */
    .nexagame-btn-talk {
        background-color: #1e1e2d; /* Dark navy/black button */
        color: #ffffff;
        padding: 18px 60px;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 50px; /* Perfect Pill Shape */
        border: 2px solid #22c55e; /* Thin green border as seen in image */
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .nexagame-btn-talk:hover {
        background-color: #22c55e;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .nexagame-info-heading {
            font-size: 1.2rem;
        }
        .nexagame-info-body {
            font-size: 0.95rem;
        }
        .nexagame-btn-talk {
            width: 100%;
            padding: 15px 20px;
        }
    }
    /* ─── GAMES ─── */
    /* ─── GAMES ─── */
#games { 
  background: var(--bg-deep); 
}

/* GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* CARD */
.game-card {
  background: #050b2b;
  border: 1px solid var(--border-subtle);
  border-radius: 10px; /* smoother */
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.35s ease;
  transform: translateY(0) scale(1);
}

/* FLOAT + SCALE */
.game-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 
    0 25px 60px rgba(0,245,255,0.18),
    0 10px 25px rgba(0,0,0,0.25);
  border-color: var(--neon-cyan);
}

/* TOP THUMB */
.game-thumb {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  transition: transform 0.5s ease;
}

/* IMAGE ZOOM EFFECT */
.game-card:hover .game-thumb {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* GRADIENT FADE */
.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, #fff 100%);
}

/* SHINE ANIMATION */
.game-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-20deg);
}

/* SHINE ON HOVER */
.game-card:hover .game-thumb::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* BOTTOM CONTENT */
.game-info {
  padding: 0.9rem 1rem;
  background: #fff;
  transition: transform 0.3s ease;
}

/* SLIGHT LIFT */
.game-card:hover .game-info {
  transform: translateY(-3px);
}

/* TEXT */
.game-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #e8dcdc;
}

/* TAG */
.game-tag {
  font-size: 0.7rem;
  color: #666;
  font-family: var(--font-mono);
  margin-top: 0.2rem;
}

/* DESCRIPTION */
.game-desc {
  font-size: 0.75rem;
  color: white;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* PREMIUM GLOW BORDER */
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--neon-cyan),
    var(--neon-purple)
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  border-radius: 10px;
}

.game-card:hover::before {
  opacity: 0.06;
}

/* SOFT INNER SHADOW (DEPTH) */
.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.08);
  pointer-events: none;
}

/* OPTIONAL: FADE-IN ANIMATION */
.game-card {
  animation: fadeUp 0.6s ease both;
}

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

/* OUR GAME DEVELOPMENT SERVICES */
/* SERVICES Section Container - Light Beige/Off-white Background */
    .nexagame-services-container {
        background-color: #e9e5d9; /* Matches the beige tint in the screenshot */
        padding: 80px 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        color: #444444;
    }

    .nexagame-services-content {
        max-width: 1000px;
        width: 100%;
        text-align: center;
    }

    /* Heading - Green and Centered */
    .nexagame-services-heading {
        color: #22c55e;
        font-family: sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 35px;
        letter-spacing: 0.5px;
    }

    /* Body Text Styling */
    .nexagame-services-body {
        text-align: left;
        font-family: sans-serif;
        line-height: 1.7;
        font-size: 1.05rem;
    }

    .intro-text {
        margin-bottom: 20px;
    }

    /* List Styling */
    .nexagame-services-list {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .nexagame-services-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
    }

    /* Bullet Point Customization */
    .nexagame-services-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #192117;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

    .nexagame-services-list strong {
        color: #000;
        font-weight: 700;
    }

    .outro-text {
        margin-top: 20px;
        color: #555;
    }

    /* Action Area */
    .nexagame-services-action {
        margin-top: 45px;
        display: flex;
        justify-content: center;
    }

    /* Dark Button "LET'S TALK" */
    .nexagame-btn-talk-dark {
        background-color: #1e1e2d; /* Dark Navy/Black */
        color: #ffffff;
        padding: 16px 55px;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: inline-block;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .nexagame-btn-talk-dark:hover {
        background-color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .nexagame-services-container {
            padding: 50px 20px;
        }
        .nexagame-services-heading {
            font-size: 1.2rem;
        }
        .nexagame-btn-talk-dark {
            width: 100%;
            text-align: center;
        }
    }

    /* ─── FEATURES ─── */
    #features { background: var(--bg-void); }
    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 4px; padding: 2rem;
      position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .feature-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--grad-cyan); transform: scaleX(0); transition: transform 0.3s;
      transform-origin: left;
    }
    .feature-card:hover { border-color: rgba(0,245,255,0.2); transform: translateY(-4px); }
    .feature-card:hover::before { transform: scaleX(1); }
    .feature-icon {
      width: 50px; height: 50px; border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.2rem;
      background: rgba(0,245,255,0.08); border: 1px solid rgba(0,245,255,0.15);
    }
    .feature-card h3 {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
      letter-spacing: 0.5px; margin-bottom: 0.6rem;
    }
    .feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

    /* ─── PRICING ─── */
    #pricing { background: var(--bg-deep); }
    .pricing-toggle {
      display: flex; align-items: center; gap: 1rem;
      justify-content: center; margin-top: 2rem;
    }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 3rem; align-items: start;
    }
    .plan-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 4px; padding: 2.5rem;
      position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .plan-card:hover { transform: translateY(-6px); }
    .plan-card.featured {
      border-color: var(--neon-purple);
      background: linear-gradient(135deg, rgba(179,71,255,0.08), rgba(0,245,255,0.04));
      box-shadow: 0 0 50px rgba(179,71,255,0.2);
      transform: scale(1.03);
    }
    .plan-card.featured:hover { transform: scale(1.03) translateY(-6px); }
    .plan-badge {
      position: absolute; top: 1.2rem; right: 1.2rem;
      background: var(--grad-gold); color: #000;
      font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 1.5px; padding: 0.25rem 0.7rem; border-radius: 2px;
      text-transform: uppercase;
    }
    .plan-icon { font-size: 2rem; margin-bottom: 1rem; }
    .plan-name {
      font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
      letter-spacing: 1px; margin-bottom: 0.3rem;
    }
    .plan-tagline { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
    .plan-price {
      margin-bottom: 2rem; padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border-subtle);
    }
    .price-amount {
      font-family: var(--font-display); font-size: 3rem; font-weight: 700;
      line-height: 1;
    }
    .price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
    .price-period { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.3rem; }
    .price-save {
      display: inline-block; margin-top: 0.5rem;
      background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.3);
      color: var(--neon-green); font-family: var(--font-mono); font-size: 0.7rem;
      padding: 0.2rem 0.6rem; border-radius: 2px; letter-spacing: 1px;
    }
    .plan-features { list-style: none; margin-bottom: 2rem; }
    .plan-features li {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-muted);
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .plan-features li .check { color: var(--neon-cyan); font-size: 0.9rem; flex-shrink: 0; }
    .plan-features li .cross { color: var(--text-dim); }
    .plan-cta {
      width: 100%; padding: 0.9rem;
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      letter-spacing: 1.5px; cursor: pointer;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all 0.3s; border: none;
    }
    .plan-cta.outline {
      background: transparent; color: var(--neon-cyan);
      border: 1px solid rgba(0,245,255,0.3);
    }
    .plan-cta.outline:hover { background: rgba(0,245,255,0.1); box-shadow: 0 0 20px rgba(0,245,255,0.2); }
    .plan-cta.solid {
      background: linear-gradient(135deg, #b347ff, #6600cc);
      color: #fff; box-shadow: 0 0 30px rgba(179,71,255,0.4);
    }
    .plan-cta.solid:hover { box-shadow: 0 0 50px rgba(179,71,255,0.7); transform: translateY(-2px); }
    .plan-cta.gold {
      background: var(--grad-gold); color: #000;
      box-shadow: 0 0 30px rgba(255,215,0,0.3);
    }
    .plan-cta.gold:hover { box-shadow: 0 0 50px rgba(255,215,0,0.6); transform: translateY(-2px); }

    /* ─── WHY US ─── */
    #why { background: var(--bg-void); }
    .why-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; margin-top: 3rem;
      border: 1px solid var(--border-subtle); border-radius: 4px; overflow: hidden;
    }
    .why-item {
      background: var(--bg-card); padding: 2.5rem;
      border-right: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      transition: background 0.3s; position: relative; overflow: hidden;
    }
    .why-item:hover { background: var(--bg-elevated); }
    .why-item::before {
      content: attr(data-num);
      position: absolute; top: 1rem; right: 1.5rem;
      font-family: var(--font-display); font-size: 5rem; font-weight: 700;
      color: rgba(0,245,255,0.04); line-height: 1;
    }
    .why-icon { font-size: 2rem; margin-bottom: 1rem; }
    .why-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
    .why-desc { color: var(--text-muted); font-size: 0.9rem; }

    /* ─── DEMO / CONTACT ─── */
    #contact { background: var(--bg-deep); }
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center; margin-top: 3rem;
    }
    .contact-info h3 {
      font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
      margin-bottom: 1rem;
    }
    .contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
    .contact-bullets { list-style: none; }
    .contact-bullets li {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.6rem 0; color: var(--text-muted); font-size: 0.9rem;
    }
    .contact-bullets li span:first-child { color: var(--neon-cyan); }
    .contact-form {
      background: var(--bg-card); border: 1px solid var(--border-subtle);
      border-radius: 4px; padding: 2.5rem;
    }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label {
      display: block; font-family: var(--font-mono); font-size: 0.72rem;
      letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .form-group input, .form-group select {
      width: 100%; padding: 0.8rem 1rem;
      background: var(--bg-elevated); border: 1px solid var(--border-subtle);
      color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
      border-radius: 2px; outline: none; transition: border-color 0.3s;
    }
    .form-group input:focus, .form-group select:focus {
      border-color: var(--neon-cyan);
      box-shadow: 0 0 15px rgba(0,245,255,0.1);
    }
    .form-group input::placeholder { color: var(--text-dim); }
    .form-group select option { background: var(--bg-elevated); }
    .form-submit {
      width: 100%; padding: 1rem;
      background: var(--grad-cyan); color: var(--bg-void);
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      letter-spacing: 2px; border: none; cursor: pointer;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all 0.3s; margin-top: 0.5rem;
    }
    .form-submit:hover { box-shadow: 0 0 40px rgba(0,245,255,0.5); transform: translateY(-2px); }

    /* ─── TICKER ─── */
    .ticker-wrap {
      background: rgba(0,245,255,0.04);
      border-top: 1px solid rgba(0,245,255,0.1);
      border-bottom: 1px solid rgba(0,245,255,0.1);
      overflow: hidden; padding: 0.6rem 0;
      position: relative; z-index: 1;
    }
    .ticker-track {
      display: flex; gap: 3rem; width: max-content;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px;
      color: var(--neon-cyan); white-space: nowrap; opacity: 0.7;
    }
    @keyframes ticker { from{transform:translateX(0)}to{transform:translateX(-50%)} }

    /* Business Journey Section Layout */
    .nexagame-cta-container {
        background-color: #0f0f1b;
        padding: 100px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: #ffffff;
    }

    .nexagame-cta-content {
        max-width: 800px;
        text-align: center;
    }

    /* Heading Styling - Bright Green */
    .nexagame-cta-heading {
        color: #22c55e;
        font-family: sans-serif; /* Recommended: Use 'Inter' or 'Poppins' if available */
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    /* Description Styling */
    .nexagame-cta-subtext {
        color: #d1d5db;
        font-family: sans-serif;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 45px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Buttons Container */
    .nexagame-cta-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Global Button Styles */
    .nexagame-btn {
        padding: 15px 38px;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 50px; /* Pill shape */
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: sans-serif;
        border: 2px solid #c5a059; /* Gold/Bronze border color */
    }

    /* White Button Style */
    .nexagame-btn-white {
        background-color: #ffffff;
        color: #000000;
    }

    .nexagame-btn-white:hover {
        background-color: #f3f4f6;
        transform: translateY(-2px);
    }

    /* Outline Button Style */
    .nexagame-btn-outline {
        background-color: transparent;
        color: #ffffff;
        gap: 10px;
    }

    .nexagame-btn-outline:hover {
        background-color: #c5a059;
        color: #000000;
        transform: translateY(-2px);
    }

    .nexagame-icon {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    /* Mobile Responsive */
    @media (max-width: 580px) {
        .nexagame-cta-container {
            padding: 60px 20px;
        }
        .nexagame-btn {
            width: 100%;
        }
    }


    /* dragontiger css */

    /* ─── DRAGON TIGER PAGE ─── */

.game-detail {
  padding: 120px 20px 60px;
  background: var(--bg-deep);
  text-align: center;
}

.game-title {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 10px;
}

.game-sub {
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* BOARD */
.dt-board {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

/* CARD */
.dt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  border-radius: 10px;
  width: 180px;
  transition: all 0.3s;
}

.dt-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
}

/* CARD TITLE */
.dt-card h2 {
  font-family: var(--font-display);
  margin-bottom: 15px;
}

/* CARD BOX */
.card-box {
  font-size: 3rem;
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
}

/* VS TEXT */
.dt-vs {
  font-size: 2rem;
  font-weight: bold;
  color: var(--neon-purple);
}

/* BUTTONS */
.dt-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

/* INFO BOX */
.game-info-box {
  max-width: 500px;
  margin: auto;
  text-align: left;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}

.game-info-box h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.game-info-box ul {
  padding-left: 20px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dt-board {
    flex-direction: column;
  }

  .dt-actions {
    flex-direction: column;
  }
}




/* ============================= */
/* CAROUSEL SECTION CSS */
/* ============================= */

.carousel-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 5%;
  position: relative;
}

.carousel-container h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

/* ============================= */
/* NAV BUTTONS */
/* ============================= */

.nav-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--neon-cyan);
  color: #000;
  border-color: var(--neon-cyan);
}

.prev-btn {
  left: -10px;
}

.next-btn {
  right: -10px;
}

/* ============================= */
/* GAME CARDS */
/* ============================= */

.service-card {
  flex: 0 0 300px;
  background: var(--bg-card);
  color: inherit;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  background: var(--bg-elevated);
  box-shadow: 0 15px 35px rgba(0,245,255,0.12);
}

.game-thumb {
  width: 100%;
  height: 180px;
  border-bottom: 2px solid var(--neon-cyan);
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary) !important;
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.3;
  display: block;
  visibility: visible;
  opacity: 1;
}

.game-info {
  padding: 1.5rem;
  background: var(--bg-card);
}

.game-tag {
  color: var(--neon-purple);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.game-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .carousel-container {
    padding: 0 15px;
  }

  .carousel-container h2 {
    font-size: 2rem;
  }

  .service-card {
    flex: 0 0 260px;
  }

  .nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .prev-btn {
    left: 0;
  }

  .next-btn {
    right: 0;
  }
}

/* CTA Section Container */
.cta-section {
  background-color: #2b3a4a; /* Dark slate background matching the image */
  padding: 5rem 2rem;
  text-align: center;
  font-family: inherit;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Typography */
.cta-heading {
  color: #38c968; /* Bright green text */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-subheading {
  color: #e2e8f0; /* Soft light gray for readability */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Button Layout */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap; /* Ensures buttons stack neatly on mobile */
}

/* Shared Button Styles */
.btn-solid, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

/* White Solid Button */
.btn-solid {
  background-color: #ffffff;
  color: #2b3a4a; /* Dark text to contrast with white bg */
  border: 2px solid #ffffff;
}

.btn-solid:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Outline Button with Icon */
.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Slight white tint on hover */
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 1.8rem;
  }
  .cta-subheading br {
    display: none; /* Allows text to wrap naturally on small screens */
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-solid, .btn-outline {
    width: 100%;
    max-width: 320px; /* Prevents buttons from getting too wide on mobile */
  }
}

/* Business Journey Section Layout */
    .nexagame-cta-container {
        background-color: #0f0f1b;
        padding: 100px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: #ffffff;
    }

    .nexagame-cta-content {
        max-width: 800px;
        text-align: center;
    }

    /* Heading Styling - Bright Green */
    .nexagame-cta-heading {
        color: #22c55e;
        font-family: sans-serif; /* Recommended: Use 'Inter' or 'Poppins' if available */
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    /* Description Styling */
    .nexagame-cta-subtext {
        color: #d1d5db;
        font-family: sans-serif;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 45px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Buttons Container */
    .nexagame-cta-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Global Button Styles */
    .nexagame-btn {
        padding: 15px 38px;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 50px; /* Pill shape */
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: sans-serif;
        border: 2px solid #c5a059; /* Gold/Bronze border color */
    }

    /* White Button Style */
    .nexagame-btn-white {
        background-color: #ffffff;
        color: #000000;
    }

    .nexagame-btn-white:hover {
        background-color: #f3f4f6;
        transform: translateY(-2px);
    }

    /* Outline Button Style */
    .nexagame-btn-outline {
        background-color: transparent;
        color: #ffffff;
        gap: 10px;
    }

    .nexagame-btn-outline:hover {
        background-color: #c5a059;
        color: #000000;
        transform: translateY(-2px);
    }

    .nexagame-icon {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    /* Mobile Responsive */
    @media (max-width: 580px) {
        .nexagame-cta-container {
            padding: 60px 20px;
        }
        .nexagame-btn {
            width: 100%;
        }
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg-void); border-top: 1px solid var(--border-subtle);
      padding: 4rem 2rem 2rem; position: relative; z-index: 1;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; line-height: 1.7; max-width: 280px; }
    .footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
    .social-link {
      width: 36px; height: 36px;
      background: var(--bg-card); border: 1px solid var(--border-subtle);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; text-decoration: none; color: var(--text-muted);
      border-radius: 2px; transition: all 0.3s;
    }
    .social-link:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(0,245,255,0.08); }
    .footer-col h4 {
      font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a {
      color: var(--text-muted); text-decoration: none; font-size: 0.88rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--neon-cyan); }
    .footer-contact-item {
      display: flex; align-items: center; gap: 0.6rem;
      color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem;
    }
    .footer-contact-item span:first-child { color: var(--neon-cyan); }
    .footer-bottom {
      border-top: 1px solid var(--border-subtle); padding-top: 2rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { color: var(--text-dim); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--neon-cyan); }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── GLOW SEPARATOR ─── */
    .glow-sep {
      height: 1px; max-width: 1200px; margin: 0 auto;
      background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
      opacity: 0.3;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .why-grid { grid-template-columns: 1fr; }
      .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      section { padding: 4rem 1.2rem; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .why-item { padding: 1.5rem; }
      .plan-card.featured { transform: scale(1); }
    }
