/* Hero */
    .hero-section {
      position: relative;
      padding: 100px 0 80px;
      background: linear-gradient(135deg, #070d17 0%, #0d1e35 40%, #081828 100%);
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 200, 255, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-section .container {
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 200, 255, 0.1);
      border: 1px solid var(--border-accent);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
    }

    .hero-section h1 {
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #fff 0%, #b8d8f0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-section > .container > p {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      color: var(--text-secondary);
      max-width: 680px;
      margin-bottom: 36px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 48px;
    }

    .hero-actions .btn-primary {
      padding: 16px 36px;
      font-size: 1.05rem;
      box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    }

    .hero-trust-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 20px 32px;
      padding-top: 36px;
      border-top: 1px solid var(--border-subtle);
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .trust-item-value {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1;
    }

    .trust-item-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .trust-item-value.accent { color: var(--accent); }
    .trust-item-value.gold { color: var(--gold); }
    .trust-item-value.orange { color: var(--accent-secondary); }

    /* Registration Timeline */
    .registration {
      background: var(--primary-deep);
    }

    .timeline-vertical {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 32px 0;
      position: relative;
    }

    .timeline-vertical::before {
      content: '';
      position: absolute;
      left: 24px;
      top: 48px;
      bottom: 48px;
      width: 2px;
      background: linear-gradient(180deg, var(--accent) 0%, var(--accent-secondary) 100%);
    }

    .timeline-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 24px 0;
      position: relative;
    }

    .timeline-step {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent) 0%, #0070aa 100%);
      color: var(--primary-deep);
      font-size: 1.1rem;
      font-weight: 900;
      flex-shrink: 0;
      z-index: 1;
      box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    }

    .timeline-content {
      flex: 1;
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-card);
      padding: 20px 24px;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .timeline-content:hover {
      border-color: var(--border-accent);
      box-shadow: 0 4px 20px rgba(0, 200, 255, 0.1);
    }

    .timeline-content h3 { margin-bottom: 8px; color: var(--text-primary); }
    .timeline-content p { margin: 0; color: var(--text-secondary); }

    /* Bonuses */
    .bonuses {
      background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
    }

    /* Games */
    .games {
      background: var(--primary-deep);
    }

    /* Security */
    .licensing {
      background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
    }

    /* Payments */
    .payments {
      background: var(--primary-deep);
    }

    /* Mobile & Support */
    .mobile-support {
      background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
    }

    /* FAQ */
    .faq {
      background: var(--primary-deep);
    }

    .faq > .container > h2 {
      margin-bottom: 32px;
    }

    @media (min-width: 768px) {
      .cards-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
      }

      .timeline-vertical::before {
        left: 28px;
      }

      .timeline-step {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
      }

      .hero-trust-bar {
        gap: 24px 48px;
      }
    }

    @media (min-width: 1024px) {
      section { padding: 88px 0; }

      .hero-section { padding: 120px 0 100px; }

      .hero-section h1 {
        font-size: 3.8rem;
      }
    }

    @media (min-width: 1440px) {
      .hero-section h1 {
        font-size: 4.4rem;
      }
    }