
    :root {
      --bg: #0B0F1A;
      --primary: #00FFB2;
      --secondary: #00C2FF;
      --accent: #FFD700;
      --text: #E5E7EB;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Rajdhani', sans-serif;
      overflow-x: hidden;
    }




    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #0B0F1A;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 3px;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 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.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9990;
      opacity: 0.4;
    }

    .glow-green {
      text-shadow: 0 0 20px var(--primary), 0 0 60px var(--primary);
    }

    .glow-blue {
      text-shadow: 0 0 20px var(--secondary), 0 0 60px var(--secondary);
    }

    .glow-gold {
      text-shadow: 0 0 20px var(--accent), 0 0 60px var(--accent);
    }

    .neon-border-green {
      box-shadow: 0 0 10px var(--primary), 0 0 30px rgba(0, 255, 178, 0.3), inset 0 0 10px rgba(0, 255, 178, 0.05);
      border-color: var(--primary);
    }

    .grid-bg {
      background-image: linear-gradient(rgba(0, 255, 178, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 178, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.4s ease;
    }

    #navbar.scrolled {
      background: rgba(11, 15, 26, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 255, 178, 0.2);
      box-shadow: 0 4px 30px rgba(0, 255, 178, 0.1);
    }

    .nav-link {
      position: relative;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: var(--text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    #hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
    }

    .slide-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 2rem;
    }

    .hero-badge {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: var(--primary);
      border: 1px solid var(--primary);
      padding: 0.35rem 1.2rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      box-shadow: 0 0 15px rgba(0, 255, 178, 0.3);
      animation: badgePulse 2s ease-in-out infinite;
    }

    @keyframes badgePulse {

      0%,
      100% {
        box-shadow: 0 0 15px rgba(0, 255, 178, 0.3);
      }

      50% {
        box-shadow: 0 0 30px rgba(0, 255, 178, 0.6), 0 0 60px rgba(0, 255, 178, 0.2);
      }
    }

    .hero-title {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      font-size: clamp(3rem, 8vw, 7rem);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
    }

    .hero-sub {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 300;
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      color: rgba(229, 231, 235, 0.7);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      letter-spacing: 0.05em;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      padding: 0.9rem 2.2rem;
      border-radius: 3px;
      background: var(--primary);
      color: #0B0F1A;
      font-weight: 700;
      transition: all 0.3s ease;
      
      box-shadow: 0 0 20px rgba(0, 255, 178, 0.5);
      text-decoration: none;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 40px rgba(0, 255, 178, 0.7), 0 10px 30px rgba(0, 255, 178, 0.3);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      padding: 0.9rem 2.2rem;
      border-radius: 3px;
      border: 1px solid var(--secondary);
      color: var(--secondary);
      font-weight: 600;
      transition: all 0.3s ease;
      
      background: transparent;
      text-decoration: none;
    }

    .btn-outline:hover {
      background: rgba(0, 194, 255, 0.1);
      box-shadow: 0 0 25px rgba(0, 194, 255, 0.4);
      transform: translateY(-3px);
    }

    .slider-dots {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.75rem;
      z-index: 20;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(229, 231, 235, 0.3);
      
      transition: all 0.3s ease;
    }

    .dot.active {
      background: var(--primary);
      box-shadow: 0 0 12px var(--primary);
      transform: scale(1.4);
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      
      transition: all 0.3s ease;
      background: rgba(11, 15, 26, 0.5);
      backdrop-filter: blur(10px);
      color: var(--text);
    }

    .slider-arrow:hover {
      border-color: var(--primary);
      box-shadow: 0 0 20px rgba(0, 255, 178, 0.4);
      color: var(--primary);
    }

    .slider-arrow.left {
      left: 2rem;
    }

    .slider-arrow.right {
      right: 2rem;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: rgba(229, 231, 235, 0.4);
      z-index: 20;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--primary), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
      }

      100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
      }
    }

    .ball {
      position: absolute;
      border-radius: 50%;
      filter: drop-shadow(0 0 8px currentColor);
      animation: floatBall linear infinite;
    }

    @keyframes floatBall {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }

      25% {
        transform: translate(30px, -20px) rotate(90deg);
      }

      50% {
        transform: translate(60px, 10px) rotate(180deg);
      }

      75% {
        transform: translate(20px, 30px) rotate(270deg);
      }

      100% {
        transform: translate(0, 0) rotate(360deg);
      }
    }

    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      color: var(--primary);
      margin-bottom: 1rem;
      display: block;
    }

    .section-title {
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.1;
    }

    .section-divider {
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 2px;
      margin: 1.5rem 0;
      box-shadow: 0 0 15px rgba(0, 255, 178, 0.5);
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-left.visible,
    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .game-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
      transition: all 0.4s ease;
      
    }

    .game-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 255, 178, 0.05), rgba(0, 194, 255, 0.05));
      opacity: 0;
      transition: opacity 0.4s;
    }

    .game-card:hover::before {
      opacity: 1;
    }

    .game-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(0, 255, 178, 0.4);
      box-shadow: 0 20px 60px rgba(0, 255, 178, 0.15), 0 0 0 1px rgba(0, 255, 178, 0.1);
    }

    .game-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .game-card-img-wrap {
      position: relative;
      overflow: hidden;
      height: 180px;
    }

    .game-card-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(11, 15, 26, 0.95) 100%);
    }

    .stat-card {
      border: 1px solid rgba(0, 255, 178, 0.15);
      border-radius: 6px;
      background: rgba(0, 255, 178, 0.02);
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      
    }

    .stat-card:hover {
      border-color: var(--primary);
      box-shadow: 0 0 30px rgba(0, 255, 178, 0.2);
      transform: translateY(-4px);
    }

    .stat-num {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--primary);
      text-shadow: 0 0 30px rgba(0, 255, 178, 0.5);
    }

    .lb-row {
      display: grid;
      grid-template-columns: 60px 1fr auto auto;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
      
    }

    .lb-row:hover {
      background: rgba(0, 255, 178, 0.04);
      border-bottom-color: rgba(0, 255, 178, 0.2);
    }

    .lb-rank {
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .lb-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .step-card {
      position: relative;
      padding: 2.5rem;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(0, 194, 255, 0.15);
      background: rgba(0, 194, 255, 0.02);
      transition: all 0.4s ease;
      
    }

    .step-card:hover {
      border-color: var(--secondary);
      box-shadow: 0 0 40px rgba(0, 194, 255, 0.15);
      transform: translateY(-5px);
    }

    .step-num {
      font-family: 'Orbitron', sans-serif;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(0, 194, 255, 0.08);
      position: absolute;
      top: 0.5rem;
      right: 1.5rem;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .tournament-card {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(255, 215, 0, 0.15);
      background: rgba(255, 215, 0, 0.02);
      transition: all 0.4s;
      
    }

    .tournament-card:hover {
      border-color: var(--accent);
      box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
      transform: translateY(-5px);
    }

    .tournament-status {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      padding: 0.25rem 0.75rem;
      border-radius: 2px;
    }

    .status-live {
      background: rgba(0, 255, 178, 0.15);
      color: var(--primary);
      border: 1px solid rgba(0, 255, 178, 0.3);
    }

    .status-upcoming {
      background: rgba(0, 194, 255, 0.15);
      color: var(--secondary);
      border: 1px solid rgba(0, 194, 255, 0.3);
    }

    .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      animation: livePulse 1s ease-in-out infinite;
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.6);
      }
    }

    .tourn-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .tourn-img-wrap {
      position: relative;
      height: 160px;
      overflow: hidden;
    }

    .tourn-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(11, 15, 26, 0.7) 100%);
    }

    .testimonial-card {
      border-radius: 8px;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.02);
      transition: all 0.4s;
    }

    .testimonial-card:hover {
      border-color: rgba(0, 255, 178, 0.2);
      box-shadow: 0 0 30px rgba(0, 255, 178, 0.08);
    }

    footer {
      border-top: 1px solid rgba(0, 255, 178, 0.15);
      background: rgba(0, 0, 0, 0.4);
    }

    .marquee-track {
      display: flex;
      gap: 4rem;
      animation: marquee 25s linear infinite;
      white-space: nowrap;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      animation: particleFloat linear infinite;
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
      }
    }

    .prog-bar {
      height: 4px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 2px;
      overflow: hidden;
    }

    .prog-fill {
      height: 100%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      box-shadow: 0 0 10px rgba(0, 255, 178, 0.5);
      transform: translateX(-100%);
      transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .prog-fill.animated {
      transform: translateX(0);
    }

    .pool-table-visual {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 3px solid rgba(0, 255, 178, 0.3);
      box-shadow: 0 0 40px rgba(0, 255, 178, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.5);
      background: #0d3b1e;
      aspect-ratio: 16/9;
    }

    .pool-table-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(0, 200, 100, 0.15) 0%, transparent 70%), repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    }

    .pricing-card {
      border-radius: 8px;
      padding: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
      transition: all 0.4s;
      
      position: relative;
      overflow: hidden;
    }

    .pricing-card.featured {
      border-color: var(--primary);
      box-shadow: 0 0 50px rgba(0, 255, 178, 0.15);
    }

    .pricing-card:hover {
      transform: translateY(-8px);
    }

    .ball-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: inherit;
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }


    /* ================= MOBILE RESPONSIVE FIX ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  #navbar {
    padding: 10px 15px;
  }

  #navbar img {
    height: 38px !important;
  }

  /* HERO SECTION */
  #hero {
    height: 90vh;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 5px 10px;
  }

  .slide-content {
    padding: 0 1rem;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-outline {
    padding: 8px 16px;
    font-size: 10px;
  }

  /* SLIDER */
  .slider-arrow {
    display: none;
  }

  .slider-dots {
    bottom: 10px;
  }

  /* GRID FIX */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* GAME CARDS */
  .game-card-img-wrap {
    height: 150px;
  }

  /* STATS */
  .stat-card {
    padding: 15px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  /* LEADERBOARD */
  .lb-row {
    grid-template-columns: 40px 1fr auto;
    font-size: 12px;
  }


}

.slide-overlay,
.slide-bg {
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 20;
}

.slide {
  position: absolute;
}