
    /* ========================================
       CSS VARIABLES & RESET
       ======================================== */
    :root {
      /* Dark Luxury Theme */
      --bg-primary: #0a0a0f;
      --bg-secondary: #13131f;
      --bg-tertiary: #1a1a2e;
      --bg-glass: rgba(26, 26, 46, 0.7);
      --bg-glass-hover: rgba(35, 35, 60, 0.9);
      
      /* Accent Colors */
      --gold-primary: #d4af37;
      --gold-secondary: #f9d77e;
      --gold-glow: rgba(212, 175, 55, 0.6);
      --purple-primary: #6a0dad;
      --purple-secondary: #9b59b6;
      --purple-glow: rgba(155, 89, 182, 0.5);
      --neon-blue: #00f3ff;
      --neon-pink: #ff00ff;
      
      /* Text Colors */
      --text-primary: #ffffff;
      --text-secondary: #b8b8d1;
      --text-muted: #7a7a9d;
      
      /* Status Colors */
      --success: #00d68f;
      --warning: #ffb800;
      --danger: #ff4757;
      
      /* Effects */
      --glass-border: 1px solid rgba(255, 255, 255, 0.1);
      --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      --neon-glow: 0 0 10px var(--gold-glow), 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow);
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      
      /* Spacing & Layout */
      --container-padding: 2rem;
      --section-padding: 5rem 0;
      --border-radius: 16px;
      --border-radius-lg: 24px;
      --border-radius-pill: 50px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: 'Rajdhani', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(106, 13, 173, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 35%);
      background-attachment: fixed;
    }

    /* ========================================
       TYPOGRAPHY
       ======================================== */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary), var(--neon-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    h1 {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      letter-spacing: -0.03em;
    }

    h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
      border-radius: 2px;
    }

    h3 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      margin-bottom: 1.5rem;
    }

    p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .text-gold {
      color: var(--gold-primary);
      font-weight: 600;
    }

    .text-center {
      text-align: center;
    }

    .text-gradient {
      background: linear-gradient(135deg, var(--gold-secondary), var(--neon-blue), var(--purple-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ========================================
       UTILITIES & ANIMATIONS
       ======================================== */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .section {
      padding: var(--section-padding);
      position: relative;
    }

    .section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
      opacity: 0.3;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 2.5rem;
      font-family: 'Orbitron', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      border-radius: var(--border-radius-pill);
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
      z-index: -1;
      transition: var(--transition);
      opacity: 0.9;
    }

    .btn:hover::before {
      opacity: 1;
      transform: scale(1.05);
    }

    .btn-primary {
      color: var(--bg-primary);
      box-shadow: var(--neon-glow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-glow), 0 0 60px var(--gold-glow);
    }

    .btn-secondary {
      background: transparent;
      border: 2px solid var(--gold-primary);
      color: var(--gold-primary);
    }

    .btn-secondary:hover {
      background: rgba(212, 175, 55, 0.1);
      transform: translateY(-3px);
      box-shadow: 0 0 20px var(--gold-glow);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--neon-blue);
      color: var(--neon-blue);
    }

    .btn-outline:hover {
      background: rgba(0, 243, 255, 0.1);
      box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    }

    .btn-sm {
      padding: 0.75rem 1.75rem;
      font-size: 0.9rem;
    }

    .glass-card {
      background: var(--bg-glass);
      border: var(--glass-border);
      border-radius: var(--border-radius);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--glass-shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .glass-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: 0.6s;
      z-index: 1;
    }

    .glass-card:hover::before {
      left: 100%;
    }

    .glass-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold-primary);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .floating {
      animation: floating 6s ease-in-out infinite;
    }

    .floating-delay {
      animation: floating 7s ease-in-out infinite 1s;
    }

    .floating-slow {
      animation: floating 8s ease-in-out infinite 2s;
    }

    @keyframes floating {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(2deg); }
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 var(--gold-glow); }
      70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
      100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }

    .glow-on-hover:hover {
      box-shadow: 0 0 25px var(--gold-glow), 0 0 50px var(--purple-glow);
    }

    /* ========================================
       HEADER & NAVIGATION
       ======================================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 0;
      transition: var(--transition);
      background: transparent;
    }

    header.scrolled {
      background: var(--bg-glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: var(--glass-border);
      box-shadow: var(--glass-shadow);
      padding: 0.75rem 0;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      font-family: 'Orbitron', sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--text-primary);
      text-shadow: 0 0 15px var(--gold-glow);
    }

    .logo-icon {
      font-size: 2rem;
      color: var(--gold-primary);
      animation: spin 8s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .logo span {
      background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
      padding: 0.5rem 0;
      position: relative;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold-primary);
      transition: var(--transition);
      border-radius: 2px;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-primary);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-cta {
      margin-left: 1.5rem;
    }

    .mobile-toggle {
      display: none;
      font-size: 1.8rem;
      color: var(--text-primary);
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
      background: radial-gradient(ellipse at bottom, var(--bg-tertiary) 0%, var(--bg-primary) 70%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a0dad' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
      animation: movePattern 20s linear infinite;
    }

    @keyframes movePattern {
      0% { background-position: 0 0; }
      100% { background-position: 100px 100px; }
    }

    .hero-content {
      text-align: center;
      max-width: 900px;
      padding: 2rem;
      z-index: 10;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      margin-bottom: 1.5rem;
      text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }

    .hero p {
      font-size: 1.4rem;
      margin-bottom: 2.5rem;
      color: var(--text-primary);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--gold-primary);
      display: block;
      margin-bottom: 0.5rem;
      text-shadow: 0 0 15px var(--gold-glow);
    }

    .stat-label {
      color: var(--text-secondary);
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .floating-element {
      position: absolute;
      font-size: 3rem;
      opacity: 0.15;
      animation: floatElement 15s infinite linear;
      color: var(--gold-primary);
      text-shadow: 0 0 20px var(--gold-glow);
    }

    .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; font-size: 4rem; }
    .floating-element:nth-child(2) { top: 20%; right: 15%; animation-delay: -5s; }
    .floating-element:nth-child(3) { bottom: 15%; left: 20%; animation-delay: -10s; font-size: 3.5rem; }
    .floating-element:nth-child(4) { bottom: 25%; right: 10%; animation-delay: -15s; }
    .floating-element:nth-child(5) { top: 40%; left: 5%; animation-delay: -7s; }

    @keyframes floatElement {
      0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.1;
      }
      50% {
        transform: translateY(-30px) rotate(180deg) scale(1.1);
        opacity: 0.25;
      }
      100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.1;
      }
    }

    /* ========================================
       ABOUT SECTION
       ======================================== */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text h3 {
      margin-top: 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.5rem;
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-primary), var(--purple-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.8rem;
      color: var(--bg-primary);
      box-shadow: 0 0 25px var(--gold-glow);
      transition: var(--transition);
    }

    .feature-item:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 0 35px var(--gold-glow), 0 0 50px var(--purple-glow);
    }

    .feature-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .feature-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin: 0;
    }

    .about-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .casino-wheel {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: conic-gradient(
        var(--gold-primary) 0% 12.5%,
        var(--purple-secondary) 12.5% 25%,
        var(--neon-blue) 25% 37.5%,
        var(--gold-secondary) 37.5% 50%,
        var(--purple-primary) 50% 62.5%,
        var(--neon-pink) 62.5% 75%,
        var(--gold-primary) 75% 87.5%,
        var(--purple-secondary) 87.5% 100%
      );
      position: relative;
      animation: spinWheel 20s linear infinite;
      box-shadow: 0 0 40px var(--gold-glow), inset 0 0 30px rgba(0,0,0,0.5);
      border: 8px solid var(--bg-secondary);
    }

    @keyframes spinWheel {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .casino-wheel::after {
      content: '🎰';
      position: absolute;
      font-size: 4rem;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-shadow: 0 0 20px rgba(0,0,0,0.8);
    }

    /* ========================================
       GAMES SECTION
       ======================================== */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .game-card {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: var(--transition);
    }

    .game-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
      z-index: 1;
      transition: var(--transition);
    }

    .game-card:hover::before {
      background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
    }

    .game-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
      opacity: 0.7;
    }

    .game-card:hover img {
      transform: scale(1.1);
      opacity: 0.4;
    }

    .game-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      z-index: 2;
      transform: translateY(20px);
      opacity: 0;
      transition: var(--transition);
    }

    .game-card:hover .game-overlay {
      transform: translateY(0);
      opacity: 1;
    }

    .game-title {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .game-desc {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

    .game-card .btn {
      width: 100%;
      padding: 0.75rem;
      font-size: 0.9rem;
    }

    .game-icon {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2.5rem;
      color: var(--gold-primary);
      text-shadow: 0 0 15px var(--gold-glow);
      z-index: 2;
      opacity: 0.9;
    }

    /* ========================================
       WHY CHOOSE US SECTION
       ======================================== */
    .features-section {
      background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    }

    .features-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-card {
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-card-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--gold-primary), var(--purple-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--bg-primary);
      box-shadow: 0 0 30px var(--gold-glow);
      transition: var(--transition);
    }

    .feature-card:hover .feature-card-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--purple-glow);
    }

    .feature-card h4 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .feature-card p {
      margin: 0;
      font-size: 1rem;
      color: var(--text-secondary);
    }

    /* ========================================
       BETTING SECTION
       ======================================== */
    .betting-container {
      max-width: 900px;
      margin: 3rem auto 0;
    }

    .betting-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--bg-glass);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--glass-shadow);
    }

    .betting-table th {
      background: linear-gradient(135deg, var(--gold-primary), var(--purple-secondary));
      color: var(--bg-primary);
      font-family: 'Orbitron', sans-serif;
      padding: 1.2rem 1rem;
      text-align: left;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
    }

    .betting-table td {
      padding: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text-secondary);
    }

    .betting-table tr:last-child td {
      border-bottom: none;
    }

    .betting-table tr:hover {
      background: rgba(212, 175, 55, 0.1);
    }

    .bet-amount {
      font-weight: 600;
      color: var(--gold-primary);
    }

    .win {
      color: var(--success);
      font-weight: 600;
    }

    .loss {
      color: var(--danger);
      font-weight: 600;
    }

    .live-indicator {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--success);
      font-weight: 600;
      font-size: 0.9rem;
    }

    .live-indicator::before {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--success);
      animation: pulse 1.5s infinite;
    }

    /* ========================================
       TESTIMONIALS SECTION
       ======================================== */
    .testimonials-container {
      max-width: 800px;
      margin: 3rem auto 0;
      position: relative;
    }

    .testimonial-slider {
      display: flex;
      transition: transform 0.5s ease;
      width: 100%;
    }

    .testimonial-card {
      min-width: 100%;
      padding: 2.5rem;
      text-align: center;
    }

    .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, var(--gold-primary), var(--purple-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--bg-primary);
      border: 3px solid var(--gold-primary);
      box-shadow: 0 0 25px var(--gold-glow);
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .testimonial-rating {
      color: var(--gold-primary);
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .testimonial-text {
      font-style: italic;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .slider-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--bg-glass);
      border: var(--glass-border);
      color: var(--gold-primary);
      font-size: 1.2rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-btn:hover {
      background: var(--gold-primary);
      color: var(--bg-primary);
      transform: scale(1.1);
      box-shadow: 0 0 20px var(--gold-glow);
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: var(--transition);
    }

    .slider-dot.active {
      background: var(--gold-primary);
      transform: scale(1.2);
      box-shadow: 0 0 15px var(--gold-glow);
    }

    /* ========================================
       CONTACT SECTION
       ======================================== */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info h3 {
      margin-top: 0;
    }

    .contact-details {
      margin: 2rem 0;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--gold-primary), var(--purple-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--bg-primary);
      flex-shrink: 0;
    }

    .contact-text strong {
      display: block;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .contact-text span {
      color: var(--text-secondary);
      font-size: 1.05rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .social-link {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--bg-glass);
      border: var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--gold-primary);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--gold-primary);
      color: var(--bg-primary);
      transform: translateY(-5px);
      box-shadow: 0 0 25px var(--gold-glow);
    }

    .contact-form .form-group {
      margin-bottom: 1.5rem;
    }

    .contact-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 1rem 1.5rem;
      background: var(--bg-glass);
      border: var(--glass-border);
      border-radius: 12px;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 1.05rem;
      transition: var(--transition);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
      background: var(--bg-glass-hover);
    }

    .contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }

    .form-message {
      padding: 1rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      display: none;
    }

    .form-message.success {
      background: rgba(0, 214, 143, 0.15);
      border: 1px solid var(--success);
      color: var(--success);
      display: block;
      animation: fadeIn 0.3s ease;
    }

    .form-message.error {
      background: rgba(255, 71, 87, 0.15);
      border: 1px solid var(--danger);
      color: var(--danger);
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .error-text {
      color: var(--danger);
      font-size: 0.9rem;
      margin-top: 0.5rem;
      display: none;
    }

    .error-text.visible {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    /* ========================================
       FOOTER SECTION
       ======================================== */
    footer {
      background: var(--bg-secondary);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
      opacity: 0.5;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    .footer-col h4 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: var(--gold-primary);
      position: relative;
      padding-bottom: 0.75rem;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--gold-primary);
      border-radius: 2px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.05rem;
    }

    .footer-links a:hover {
      color: var(--gold-primary);
      transform: translateX(5px);
    }

    .footer-links a i {
      font-size: 0.9rem;
      opacity: 0;
      transition: var(--transition);
    }

    .footer-links a:hover i {
      opacity: 1;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .footer-bottom a {
      color: var(--gold-primary);
      text-decoration: none;
      margin: 0 0.5rem;
      transition: var(--transition);
    }

    .footer-bottom a:hover {
      text-shadow: 0 0 10px var(--gold-glow);
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .newsletter-form input {
      padding: 0.9rem 1.2rem;
      background: var(--bg-glass);
      border: var(--glass-border);
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 1rem;
    }

    .newsletter-form input:focus {
      outline: none;
      border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    }

    .newsletter-form .btn {
      width: 100%;
      padding: 0.9rem;
    }

    .copyright {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* ========================================
       MODALS
       ======================================== */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      padding: 2rem;
    }

    .modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: var(--bg-secondary);
      border-radius: var(--border-radius-lg);
      border: var(--glass-border);
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 50px var(--gold-glow);
      max-width: 700px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: scale(0.9);
      transition: transform 0.3s ease;
      padding: 2.5rem;
    }

    .modal.active .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg-glass);
      border: var(--glass-border);
      color: var(--text-primary);
      font-size: 1.3rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      z-index: 10;
    }

    .modal-close:hover {
      background: var(--danger);
      color: white;
      transform: rotate(90deg);
    }

    .modal h3 {
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
    }

    .modal-content p {
      margin-bottom: 1.2rem;
      line-height: 1.7;
    }

    .modal-content ul {
      margin: 1rem 0 1.5rem 1.5rem;
      color: var(--text-secondary);
    }

    .modal-content li {
      margin-bottom: 0.5rem;
    }

    .modal-form .form-group {
      margin-bottom: 1.2rem;
    }

    .modal-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .modal-form input,
    .modal-form select {
      width: 100%;
      padding: 0.9rem 1.2rem;
      background: var(--bg-glass);
      border: var(--glass-border);
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 1rem;
    }

    .modal-form input:focus,
    .modal-form select:focus {
      outline: none;
      border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    }

    .modal-form .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin: 1rem 0;
    }

    .modal-form input[type="checkbox"] {
      width: auto;
      margin-top: 4px;
      cursor: pointer;
    }

    .modal-form .checkbox-group label {
      margin: 0;
      font-weight: 400;
      color: var(--text-secondary);
      font-size: 0.95rem;
      cursor: pointer;
    }

    .modal-form .btn {
      width: 100%;
      margin-top: 0.5rem;
    }

    /* ========================================
       LOADING SCREEN
       ======================================== */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .loader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-content {
      text-align: center;
    }

    .loader-spinner {
      width: 80px;
      height: 80px;
      border: 4px solid rgba(212, 175, 55, 0.2);
      border-top: 4px solid var(--gold-primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 1.5rem;
      box-shadow: 0 0 25px var(--gold-glow);
    }

    .loader-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.3rem;
      color: var(--gold-primary);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    /* ========================================
       CURSOR GLOW EFFECT
       ======================================== */
    .cursor-glow {
      position: fixed;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9998;
      opacity: 0;
      transition: opacity 0.3s ease;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .cursor-glow.active {
      opacity: 1;
    }

    /* ========================================
       RESPONSIVE DESIGN
       ======================================== */
    @media (max-width: 1024px) {
      :root {
        --container-padding: 1.5rem;
        --section-padding: 4rem 0;
      }
      
      .about-content,
      .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .about-visual {
        order: -1;
      }
      
      .casino-wheel {
        width: 220px;
        height: 220px;
      }
    }

    @media (max-width: 768px) {
      .mobile-toggle {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: var(--glass-border);
        box-shadow: var(--glass-shadow);
        z-index: 999;
      }
      
      .nav-links.active {
        transform: translateY(0);
      }
      
      .nav-cta {
        margin-left: 0;
        width: 100%;
      }
      
      .nav-cta .btn {
        width: 100%;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .hero-stats {
        gap: 2rem;
      }
      
      .stat-number {
        font-size: 2rem;
      }
      
      h2 {
        font-size: 2.2rem;
      }
      
      .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      }
      
      .betting-table {
        font-size: 0.9rem;
      }
      
      .betting-table th,
      .betting-table td {
        padding: 0.8rem 0.5rem;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .social-links {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
      }
      
      h1 {
        font-size: 2.3rem;
      }
      
      .hero p {
        font-size: 1.2rem;
      }
      
      .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
      }
      
      .casino-wheel {
        width: 180px;
        height: 180px;
      }
      
      .casino-wheel::after {
        font-size: 2.5rem;
      }
      
      .feature-icon,
      .feature-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
      
      .modal-content {
        padding: 1.8rem;
        margin: 1rem;
      }
      
      .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
      }
    }

    /* ========================================
       ACCESSIBILITY & PREFERENCES
       ======================================== */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      
      .floating,
      .floating-delay,
      .floating-slow,
      .casino-wheel,
      .floating-element {
        animation: none !important;
      }
    }

    /* Focus styles for accessibility */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    .slider-btn:focus,
    .modal-close:focus {
      outline: 2px solid var(--gold-primary);
      outline-offset: 2px;
    }

    /* Skip to content link */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--gold-primary);
      color: var(--bg-primary);
      padding: 0.5rem 1rem;
      z-index: 10000;
      transition: top 0.3s;
      font-weight: 600;
    }

    .skip-link:focus {
      top: 0;
    }


/* Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.4s ease;
}

/* Glass Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image */
.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Icon */
.game-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 20px;
  color: var(--accent);
  z-index: 2;
}

/* Overlay */
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.9);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

/* Show overlay on hover */
.game-card:hover .game-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover */
.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Title & Text */
.game-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.game-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

.btn-secondary {
  background: var(--accent-2);
  color: #000;
}

.btn-secondary:hover {
  opacity: 0.85;
}

/* Small Button */
.btn-sm {
  padding: 8px 14px;
  font-size: 0.8rem;
}

/* Center */
.text-center {
  text-align: center;
}

/* Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .game-card img {
    height: 180px;
  }
}
