/* Hero */
    .hero-section {
      background: linear-gradient(135deg, #05071a 0%, #0d1535 40%, #071a2e 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
      min-height: 540px;
      display: flex;
      align-items: center;
    }

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

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 780px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      background: var(--accent-dim);
      border: 1px solid var(--border-accent);
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }

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

    .main-headline {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.25rem;
      color: var(--text-primary);
    }

    .main-headline span {
      background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 640px;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      margin-bottom: 2.5rem;
    }

    .hero-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.82rem;
      font-weight: 500;
    }

    .trust-icon {
      width: 28px;
      height: 28px;
      background: var(--accent-dim);
      border: 1px solid var(--border-accent);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .trust-icon svg { width: 14px; height: 14px; fill: var(--accent); }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-subtle);
    }

    .stat-item { text-align: left; }

    .stat-number {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      display: block;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: block;
      margin-top: 0.25rem;
    }

    /* Licensing section */
    .licensing {
      background: var(--secondary);
    }

    .section-icon {
      width: 48px;
      height: 48px;
      background: var(--accent-dim);
      border: 1px solid var(--border-accent);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .section-icon svg { width: 24px; height: 24px; fill: var(--accent); }

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

    .timeline-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 1.5rem 0;
      position: relative;
    }

    .timeline-steps::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent), transparent);
    }

    .timeline-step {
      display: flex;
      gap: 1rem;
      padding: 1rem 0 1rem 0;
      position: relative;
    }

    .step-number {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--accent) 0%, #0099bb 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.9rem;
      color: #000;
      flex-shrink: 0;
      z-index: 1;
    }

    .step-content { padding-top: 0.5rem; }
    .step-content h4 { color: var(--text-primary); font-size: 1rem; margin-bottom: 0.25rem; }
    .step-content p { font-size: 0.9rem; margin: 0; }

    /* Games section */
    .games { background: var(--secondary); }

    /* Bonuses */
    .bonuses { background: var(--primary); }

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

    /* Mobile app */
    .mobile-app { background: var(--primary); }

    .app-features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .app-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: var(--surface-raised);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      transition: border-color var(--transition);
    }

    .app-feature-item:hover { border-color: var(--border-accent); }

    .app-feature-icon {
      width: 36px;
      height: 36px;
      background: var(--accent-dim);
      border: 1px solid var(--border-accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .app-feature-icon svg { width: 18px; height: 18px; fill: var(--accent); }
    .app-feature-item span { color: var(--text-secondary); font-size: 0.95rem; padding-top: 0.3rem; }

    /* Responsible gambling */
    .responsible-gambling { background: var(--secondary); }

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

    .accordion-item {
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-card);
      margin-bottom: 0.75rem;
      overflow: hidden;
      background: var(--surface-raised);
      transition: border-color var(--transition);
    }

    .accordion-item:hover { border-color: var(--border-accent); }

    .accordion-header {
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      user-select: none;
      margin: 0;
    }

    .accordion-header::after {
      content: '';
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2300e5ff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      flex-shrink: 0;
      transition: transform var(--transition);
    }

    .accordion-header.is-active::after { transform: rotate(180deg); }

    .accordion-body {
      display: none;
      padding: 0 1.5rem 1.25rem;
    }

    .accordion-body.is-open { display: block; }
    .accordion-body p { color: var(--text-secondary); margin: 0; font-size: 0.95rem; }

    /* Responsive */
    @media (min-width: 768px) {
      .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
      .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
      .app-features-grid { grid-template-columns: repeat(2, 1fr); }

      .hero-section { padding: 6rem 0 5rem; }

      .hero-stats {
        gap: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
      .app-features-grid { grid-template-columns: repeat(3, 1fr); }

      main > section { padding: 5rem 0; }

      .hero-section { min-height: 620px; }
    }

    @media (min-width: 1440px) {
      .main-headline { font-size: 3.5rem; }
    }