/* Hero */
    .hero-section {
      position: relative;
      padding: 100px 0 80px;
      overflow: hidden;
      background: var(--surface-2);
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,16,46,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(245,197,24,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-section::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,16,46,0.15);
      border: 1px solid var(--border-mid);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .hero-badge .dot {
      width: 7px; height: 7px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }

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

    .hero-section h1 {
      font-size: clamp(30px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 0%, #e0e0f0 50%, #c0c0d8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-section h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent-bright), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-section > .container > p {
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--text-secondary);
      max-width: 680px;
      margin-bottom: 36px;
      line-height: 1.8;
    }

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

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

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .trust-item strong { color: var(--text-secondary); }
    .trust-icon {
      width: 18px; height: 18px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: #fff;
      font-weight: 700;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      margin-bottom: 40px;
    }
    .hero-stat { text-align: left; }
    .hero-stat-value {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      font-family: var(--font-display);
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 4px;
    }
    .hero-stat-value span { color: var(--accent-bright); }
    .hero-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

    /* Registration section */
    .registration {
      background: var(--surface);
    }
    .registration h2 { margin-bottom: 12px; }
    .registration .section-divider { margin-bottom: 48px; }

    .registration article h3 {
      color: var(--text-primary);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }

    /* Mobile app section */
    .mobile-app {
      background: var(--surface-2);
      position: relative;
      overflow: hidden;
    }
    .mobile-app::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(200,16,46,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .mobile-app h2 { margin-bottom: 12px; }
    .mobile-app .section-divider { margin-bottom: 48px; }
    .mobile-app article h3 {
      color: var(--text-primary);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }

    /* Bonuses section */
    .bonuses {
      background: var(--surface);
    }
    .bonuses h2 { margin-bottom: 12px; }
    .bonuses .section-divider { margin-bottom: 48px; }
    .bonuses article h3 {
      color: var(--text-primary);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }

    /* Games section */
    .games {
      background: var(--surface-2);
    }
    .games h2 { margin-bottom: 12px; }
    .games .section-divider { margin-bottom: 48px; }
    .games article h3 {
      color: var(--text-primary);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }

    /* FAQ section */
    .faq {
      background: var(--surface);
    }
    .faq h2 { margin-bottom: 12px; }
    .faq .section-divider { margin-bottom: 48px; }

    .accordion { list-style: none; padding: 0; margin: 0; }

    .accordion-item {
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
      transition: var(--transition);
    }
    .accordion-item:hover { border-color: var(--border-mid); }

    .accordion-header { margin: 0; }
    .accordion-header button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 20px 24px;
      background: var(--surface-3);
      border: none;
      color: var(--text-primary);
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      transition: var(--transition);
      font-family: inherit;
      gap: 12px;
    }
    .accordion-header button:hover { background: var(--surface-4); color: var(--text-primary); }
    .accordion-header button::after {
      content: '+';
      font-size: 22px;
      color: var(--accent);
      flex-shrink: 0;
      font-weight: 300;
      transition: transform 0.3s ease;
    }
    .accordion-header button[aria-expanded="true"] { background: var(--surface-4); }
    .accordion-header button[aria-expanded="true"]::after { transform: rotate(45deg); }

    .accordion-body {
      display: none;
      padding: 0 24px 20px;
      background: var(--surface-3);
    }
    .accordion-body.is-open { display: block; }
    .accordion-body p {
      margin: 0;
      padding-top: 16px;
      font-size: 15px;
      color: var(--text-secondary);
      border-top: 1px solid var(--border-subtle);
    }

    /* Responsive page styles */
    @media (max-width: 767px) {
      section { padding: 52px 0; }

      .hero-section { padding: 64px 0 52px; }
      .hero-stats { gap: 20px; }
      .hero-cta-row { flex-direction: column; align-items: stretch; }
      .hero-cta-row .btn { width: 100%; }
      .hero-trust-row { gap: 16px; }

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

      .accordion-header button { font-size: 14px; padding: 16px 18px; }
      .accordion-body { padding: 0 18px 16px; }

      .highlight-box { padding: 16px 18px; }
    }

    @media (min-width: 768px) {
      .hero-section { padding: 100px 0 80px; }
      .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
      .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
    }

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

    @media (min-width: 1440px) {
      h1 { font-size: 68px; }
      h2 { font-size: 48px; }
    }