/* Hero Section */
    .hero-section {
      padding: 2rem 0;
      position: relative;
      overflow: hidden;
      min-height: auto;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #0f0620 0%, #1a0535 40%, #0a0412 100%);
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 70vw;
      height: 70vw;
      max-width: 900px;
      max-height: 900px;
      background: radial-gradient(circle, rgba(168,85,247,0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -5%;
      left: -5%;
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      background: radial-gradient(circle, rgba(217,70,239,0.15) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--spacing-sm);
      background: rgba(124,58,237,0.25);
      border: 1px solid rgba(168,85,247,0.4);
      border-radius: var(--radius-full);
      padding: 0.4rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-accent);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: var(--spacing-xl);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--color-accent-bright);
      border-radius: 50%;
      animation: pulseDot 1.5s ease-in-out infinite;
    }

    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .hero-section h1 {
      font-size: clamp(2.2rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: var(--spacing-sm);
      background: linear-gradient(135deg, #f5f0ff 30%, var(--color-accent-bright) 70%, var(--color-gold-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-section p {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: var(--color-text-secondary);
      max-width: 680px;
      margin-bottom: var(--spacing-sm);
      line-height: 1.8;
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-md);
      align-items: center;
      margin-bottom: var(--spacing-2xl);
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-xl);
      margin-top: var(--spacing-xl);
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .hero-stat-value {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--color-accent-bright);
      font-family: var(--font-display);
    }

    .hero-stat-label {
      font-size: 0.8rem;
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-lg);
      align-items: center;
      margin-top: var(--spacing-xl);
      padding-top: var(--spacing-xl);
      border-top: 1px solid var(--color-border);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    .trust-icon {
      width: 20px;
      height: 20px;
      background: var(--color-accent-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .trust-icon svg {
      width: 12px;
      height: 12px;
      fill: #fff;
    }

    /* Countdown timer */
    .hero-countdown {
      display: inline-flex;
      align-items: center;
      gap: var(--spacing-md);
      background: rgba(217,70,239,0.12);
      border: 1px solid rgba(217,70,239,0.3);
      border-radius: var(--radius-md);
      padding: var(--spacing-md) var(--spacing-lg);
      margin-bottom: var(--spacing-xl);
    }

    .countdown-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--color-accent);
      font-weight: 600;
    }

    .countdown-timer {
      display: flex;
      gap: var(--spacing-sm);
      align-items: center;
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .countdown-num {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--color-accent-bright);
      font-variant-numeric: tabular-nums;
      min-width: 2.2ch;
      text-align: center;
      font-family: var(--font-display);
    }

    .countdown-sub {
      font-size: 0.65rem;
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .countdown-sep {
      font-size: 1.2rem;
      color: var(--color-brand-secondary);
      font-weight: 700;
      margin-bottom: 12px;
    }

    /* Registration section */
    .registration {
      background: var(--color-bg-base);
    }

    /* Licensing section */
    .licensing {
      background: var(--color-bg-surface);
    }

    .info-card {
      position: relative;
    }

    .info-card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-secondary));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--spacing-lg);
    }

    .info-card-icon svg {
      width: 24px;
      height: 24px;
      fill: #fff;
    }

    /* Game library */
    .game-library { background: var(--color-bg-base); }

    /* Software providers */
    .software-providers { background: var(--color-bg-surface); }

    /* Bonuses */
    .bonuses { background: var(--color-bg-base); }

    /* Payments */
    .payments { background: var(--color-bg-surface); }

    /* Mobile app */
    .mobile-app { background: var(--color-bg-base); }

    /* FAQ */
    .faq { background: var(--color-bg-surface); }

    /* Live casino feature */
    .live-casino-feature {
      padding: 0;
      background: var(--color-bg-base);
    }

    .live-casino-feature .container { padding-block: var(--spacing-xl); }
    .live-casino-feature .content-image { margin-inline: auto; }

    @media (min-width: 768px) {
      .hero-section { min-height: auto; }
    }

    @media (min-width: 1024px) {
      .hero-section p { font-size: 1.2rem; }
      .hero-stats { gap: var(--spacing-2xl); }
      .hero-stat-value { font-size: 2rem; }
      section { padding: var(--spacing-4xl) 0; }
    }

    @media (max-width: 767px) {
      h2 { font-size: 1.6rem; }
      section { padding: var(--spacing-2xl) 0; }
      .hero-section { min-height: auto; padding: 1rem 0; }
      .hero-countdown { flex-direction: column; align-items: flex-start; gap: var(--spacing-sm); }
      .hero-stats { gap: var(--spacing-lg); }
    }

    @media (max-width: 480px) {
      .container { padding-inline: var(--spacing-md); }
      .comparison-table { font-size: 0.82rem; }
      .comparison-table tbody td, .comparison-table thead th { padding: var(--spacing-sm) var(--spacing-md); }
    }