/* HERO */
    .hero-section {
      background: var(--gradient-hero);
      padding: 80px 0 64px;
      position: relative;
    }

    .hero-section::before {
      background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
      content: '';
      inset: 0;
      pointer-events: none;
      position: absolute;
    }

    .hero-content-wrap {
      align-items: center;
      display: flex;
      flex-direction: column;
      gap: 48px;
      position: relative;
    }

    .hero-text-block { text-align: center; }

    .hero-badge {
      align-items: center;
      background: rgba(0, 229, 255, 0.1);
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      display: inline-flex;
      font-size: 13px;
      font-weight: 600;
      gap: 8px;
      letter-spacing: 1px;
      margin-bottom: 24px;
      padding: 8px 20px;
      text-transform: uppercase;
    }

    .hero-badge .badge-dot {
      animation: pulse-dot 1.5s infinite;
      background: #00ff88;
      border-radius: 50%;
      display: inline-block;
      height: 8px;
      width: 8px;
    }

    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6); opacity: 1; }
      50% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); opacity: 0.8; }
    }

    .hero-section h1 {
      background: linear-gradient(135deg, #ffffff 0%, #b0d8ff 60%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      margin-bottom: 24px;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      color: var(--text-secondary);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 700px;
      margin-inline: auto;
    }

    .hero-cta-group {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-bottom: 40px;
    }

    .hero-stats {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 32px;
      justify-content: center;
    }

    .stat-item {
      align-items: center;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-value {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      background-clip: text;
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px;
      font-weight: 700;
      -webkit-text-fill-color: transparent;
    }

    .stat-label {
      color: var(--text-muted);
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .stat-divider {
      background: var(--border-subtle);
      height: 40px;
      width: 1px;
    }

    .hero-social-proof {
      align-items: center;
      background: rgba(0, 229, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      display: flex;
      gap: 12px;
      justify-content: center;
      padding: 12px 24px;
    }

    .social-proof-text {
      color: var(--text-secondary);
      font-size: 14px;
      margin: 0;
    }

    .social-proof-text strong { color: var(--accent); }

    .trust-badges {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 32px;
    }

    .trust-badge {
      align-items: center;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      display: flex;
      gap: 8px;
      padding: 8px 16px;
    }

    .trust-badge span { color: var(--text-secondary); font-size: 13px; font-weight: 500; }
    .trust-badge svg { flex-shrink: 0; }

    /* SECURITY */
    .security {
      background: var(--bg-secondary);
      padding: 80px 0;
    }

    .section-header {
      margin-bottom: 48px;
      text-align: center;
    }

    .section-header h2 {
      background: linear-gradient(135deg, #fff, var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      margin-bottom: 16px;
      -webkit-text-fill-color: transparent;
    }

    .section-header p { color: var(--text-secondary); max-width: 640px; margin-inline: auto; }

    .security-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
    }

    .security-text-block { margin-bottom: 32px; }

    .security-text-block p { color: var(--text-secondary); }

    .feature-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
      align-items: flex-start;
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md);
      display: flex;
      gap: 14px;
      padding: 20px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .feature-item:hover {
      border-color: rgba(0, 229, 255, 0.3);
      box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
    }

    .feature-icon {
      align-items: center;
      background: rgba(0, 229, 255, 0.1);
      border-radius: var(--radius-sm);
      display: flex;
      flex-shrink: 0;
      height: 44px;
      justify-content: center;
      width: 44px;
    }

    .feature-text strong {
      color: var(--text-primary);
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }

    .feature-text span { color: var(--text-muted); font-size: 13px; }

    /* BONUSES */
    .bonuses {
      background: var(--bg-primary);
      padding: 80px 0;
    }

    .cards-grid-2 {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
      margin-bottom: 32px;
    }

    .bonus-card {
      background: var(--gradient-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      position: relative;
      transition: box-shadow 0.35s, transform 0.3s;
    }

    .bonus-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .bonus-card-badge {
      background: var(--gradient-accent);
      color: #000;
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 6px 20px;
      text-transform: uppercase;
    }

    .bonus-card-body { padding: 28px; }

    .bonus-amount {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      background-clip: text;
      font-family: 'Rajdhani', sans-serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 8px;
      -webkit-text-fill-color: transparent;
    }

    .bonus-card h3 {
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .bonus-card p { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; }

    .bonus-details {
      display: grid;
      gap: 10px;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 24px;
    }

    .bonus-detail-item {
      background: rgba(0, 229, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      padding: 12px;
    }

    .bonus-detail-item dt {
      color: var(--text-muted);
      font-size: 11px;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
      text-transform: uppercase;
    }

    .bonus-detail-item dd {
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      margin: 0;
    }

    /* PAYMENTS */
    .payments {
      background: var(--bg-secondary);
      padding: 80px 0;
    }

    .table-responsive {
      border-radius: var(--radius-md);
      margin-block: 28px;
      overflow-x: auto;
    }

    .comparison-table {
      border-collapse: separate;
      border-spacing: 0;
      min-width: 600px;
      width: 100%;
    }

    .comparison-table thead tr {
      background: rgba(0, 229, 255, 0.08);
    }

    .comparison-table th {
      border-bottom: 1px solid var(--border-subtle);
      color: var(--accent);
      font-family: 'Rajdhani', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 16px 20px;
      text-align: left;
      text-transform: uppercase;
    }

    .comparison-table td {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-subtle);
      color: var(--text-secondary);
      font-size: 14px;
      padding: 14px 20px;
      transition: background 0.2s;
    }

    .comparison-table tbody tr:hover td { background: var(--bg-card-hover); }
    .comparison-table tbody tr:last-child td { border-bottom: none; }
    .comparison-table tbody tr:last-child td:first-child { border-bottom-left-radius: var(--radius-md); }
    .comparison-table tbody tr:last-child td:last-child { border-bottom-right-radius: var(--radius-md); }

    .instant-badge {
      align-items: center;
      background: rgba(0, 255, 136, 0.12);
      border: 1px solid rgba(0, 255, 136, 0.3);
      border-radius: 50px;
      color: #00ff88;
      display: inline-flex;
      font-size: 12px;
      font-weight: 600;
      gap: 5px;
      padding: 3px 10px;
    }

    .no-fee-badge {
      align-items: center;
      background: rgba(0, 229, 255, 0.1);
      border: 1px solid rgba(0, 229, 255, 0.2);
      border-radius: 50px;
      color: var(--accent);
      display: inline-flex;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 10px;
    }

    .unlimited-badge {
      color: var(--text-primary);
      font-weight: 600;
    }

    /* GAMES */
    .games {
      background: var(--bg-primary);
      padding: 80px 0;
    }

    .games-intro { color: var(--text-secondary); margin-bottom: 40px; }

    .game-card {
      background: var(--gradient-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: box-shadow 0.35s, transform 0.3s;
    }

    .game-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .game-card .content-image { border-radius: 0; margin: 0; }

    .game-card-body { padding: 24px; }

    .game-card h3 { color: var(--text-primary); margin-bottom: 10px; }

    .game-card p { color: var(--text-secondary); font-size: 14px; margin: 0; }

    .providers-image {
      border-radius: var(--radius-md);
      margin-top: 48px;
      overflow: hidden;
    }

    .providers-image img { border-radius: var(--radius-md); display: block; height: auto; width: 100%; }

    /* REGISTRATION */
    .registration {
      background: var(--bg-secondary);
      padding: 80px 0;
    }

    .reg-intro { color: var(--text-secondary); margin-bottom: 40px; }

    .steps-list {
      counter-reset: step;
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
      list-style: none;
      margin-bottom: 40px;
      padding: 0;
    }

    .step-item {
      align-items: flex-start;
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      counter-increment: step;
      display: flex;
      gap: 20px;
      padding: 24px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .step-item:hover {
      border-color: rgba(0, 229, 255, 0.3);
      box-shadow: 0 4px 24px rgba(0, 229, 255, 0.08);
    }

    .step-number {
      align-items: center;
      background: var(--gradient-accent);
      border-radius: 50%;
      color: #000;
      display: flex;
      flex-shrink: 0;
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 700;
      height: 48px;
      justify-content: center;
      width: 48px;
    }

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

    .checklist {
      display: flex;
      flex-direction: column;
      gap: 12px;
      list-style: none;
      padding: 0;
    }

    .checklist li {
      align-items: flex-start;
      color: var(--text-secondary);
      display: flex;
      font-size: 14px;
      gap: 10px;
      line-height: 1.6;
    }

    .checklist li::before {
      background: rgba(0, 229, 255, 0.1);
      border: 1px solid var(--border-subtle);
      border-radius: 50%;
      color: var(--accent);
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
      font-weight: 700;
      height: 22px;
      margin-top: 2px;
      width: 22px;
    }

    /* FAQ */
    .faq {
      background: var(--bg-primary);
      padding: 80px 0;
    }

    .accordion-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .accordion-item.is-open { border-color: rgba(0, 229, 255, 0.3); }

    .accordion-header {
      align-items: center;
      color: var(--text-primary);
      cursor: pointer;
      display: flex;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      gap: 16px;
      justify-content: space-between;
      margin: 0;
      padding: 20px 24px;
      transition: color 0.2s;
      user-select: none;
    }

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

    .accordion-icon {
      align-items: center;
      background: rgba(0, 229, 255, 0.1);
      border-radius: 50%;
      display: flex;
      flex-shrink: 0;
      height: 32px;
      justify-content: center;
      transition: background 0.3s, transform 0.3s;
      width: 32px;
    }

    .accordion-item.is-open .accordion-icon {
      background: var(--accent);
      transform: rotate(45deg);
    }

    .accordion-icon svg { color: var(--accent); transition: color 0.3s; }
    .accordion-item.is-open .accordion-icon svg { color: #000; }

    .accordion-body {
      display: none;
      padding: 0 24px 20px;
    }

    .accordion-body.is-open { display: block; }
    .accordion-body p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin: 0; }
    .accordion-body a { color: var(--accent); }

    @media (min-width: 768px) {
      .security-grid { grid-template-columns: 1fr 1fr; }
      .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
      .steps-list { grid-template-columns: repeat(3, 1fr); }
    }

    @media (min-width: 1024px) {
      .hero-section { padding: 100px 0 80px; }
      .feature-grid { grid-template-columns: repeat(4, 1fr); }
      .bonus-details { grid-template-columns: repeat(3, 1fr); }
    }