/* Hero */
    .hero-section {
      padding: var(--sp6) 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(212,0,255,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(180,79,255,0.12) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--c1) 50%, var(--bg) 100%);
      overflow: hidden;
      position: relative;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80%;
      background: radial-gradient(ellipse, rgba(212,0,255,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-section .container {
      position: relative;
      z-index: 1;
    }
    .hero__badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: var(--sp3);
    }
    .hero__title {
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: var(--sp3);
      background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, var(--acc) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero__subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--fg2);
      max-width: 640px;
      margin-bottom: var(--sp4);
    }
    .hero__cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp2);
      align-items: center;
      margin-bottom: var(--sp4);
    }
    .hero__btn-main {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      background: linear-gradient(135deg, var(--acc), var(--acc2));
      color: #fff;
      border: none;
      border-radius: var(--rad3);
      font-weight: 800;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 0 30px rgba(212,0,255,0.45), var(--shadow);
      transition: var(--trans);
      position: relative;
      overflow: hidden;
    }
    .hero__btn-main::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transition: left 0.5s;
    }
    .hero__btn-main:hover::before { left: 100%; }
    .hero__btn-main:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 0 50px rgba(212,0,255,0.6), var(--shadow2);
      color: #fff;
      text-decoration: none;
    }
    .hero__btn-secondary {
      padding: 1rem 2rem;
      font-size: 1rem;
      background: transparent;
      color: var(--fg2);
      border: 1px solid rgba(212,0,255,0.4);
      border-radius: var(--rad3);
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: var(--trans);
    }
    .hero__btn-secondary:hover {
      border-color: var(--acc);
      color: var(--acc);
      text-decoration: none;
    }
    .hero__stats {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp3);
    }
    .hero__stat {
      display: flex;
      flex-direction: column;
    }
    .hero__stat-val {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--acc);
      line-height: 1;
    }
    .hero__stat-label {
      font-size: 0.8rem;
      color: var(--fg3);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .hero__bonus-card {
      background: linear-gradient(135deg, rgba(107,0,128,0.4), rgba(45,0,80,0.6));
      border: 1px solid rgba(212,0,255,0.4);
      border-radius: var(--rad2);
      padding: var(--sp3) var(--sp4);
      box-shadow: var(--glow);
      margin-top: var(--sp4);
      display: inline-block;
    }
    .hero__bonus-val {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      background: linear-gradient(135deg, #fff, var(--acc2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .hero__bonus-sub {
      font-size: 0.9rem;
      color: var(--fg3);
    }

    /* Section alternation */
    .registration { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
    .bonuses { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg2) 100%); }
    .bonuses .content-image { width: fit-content; max-width: 600px; margin-left: auto; margin-right: auto; }
    .bonuses .content-image img { width: auto; max-width: 100%; height: auto; }
    .payments { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }
    .security { background: linear-gradient(180deg, var(--bg) 0%, var(--bg3) 100%); }
    .games { background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 100%); }
    .faq { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }

    /* Section header style */
    .section-head { margin-bottom: var(--sp4); }
    .section-head h2 { margin-bottom: var(--sp2); }

    /* Registration timeline */
    .timeline__steps {
      display: flex;
      flex-direction: column;
      gap: var(--sp3);
      margin: var(--sp4) 0;
      position: relative;
    }
    .timeline__step {
      display: flex;
      gap: var(--sp3);
      align-items: flex-start;
    }
    .timeline__num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--acc), var(--c3));
      color: #fff;
      font-weight: 900;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 0 16px rgba(212,0,255,0.4);
    }
    .timeline__content h3 { margin-bottom: 0.3rem; color: var(--fg); }
    .timeline__content p { margin: 0; font-size: 0.95rem; }

    /* Payment section */
    .payments__icons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp2);
      margin: var(--sp3) 0;
    }
    .payments__badge {
      background: rgba(212,0,255,0.1);
      border: 1px solid rgba(212,0,255,0.3);
      border-radius: var(--rad);
      padding: 0.5rem 1.2rem;
      font-weight: 700;
      color: var(--fg);
      font-size: 0.9rem;
    }

    /* Games cards */
    .games .card {
      overflow: hidden;
      padding: 0;
    }
    .games .card .content-image {
      margin: 0;
      border: none;
      border-radius: 0;
    }
    .games .card__body { padding: var(--sp3); }
    .games .card h3 { font-size: 1.1rem; }

    /* Security trust grid */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: var(--sp3);
      margin: var(--sp4) 0;
    }
    .trust-item {
      background: rgba(212,0,255,0.07);
      border: 1px solid rgba(212,0,255,0.2);
      border-radius: var(--rad);
      padding: var(--sp3);
      display: flex;
      flex-direction: column;
      gap: var(--sp1);
    }
    .trust-item__icon {
      font-size: 1.8rem;
      margin-bottom: 0.3rem;
    }
    .trust-item h3 { font-size: 0.95rem; color: var(--acc2); margin: 0; }
    .trust-item p { font-size: 0.85rem; margin: 0; }

    /* FAQ */
    .faq .container > h2 { margin-bottom: var(--sp4); }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--c3); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--acc); }

    @media (max-width: 767px) {
      section { padding: var(--sp4) 0; }
      .hero-section { padding: var(--sp5) 0; }
      .hero__stats { gap: var(--sp2); }
      .hero__stat-val { font-size: 1.4rem; }
      .cards-grid-3 { grid-template-columns: 1fr; }
      .cards-grid-2 { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .info-card { padding: var(--sp3); }
      .accordion-header button { padding: var(--sp2) var(--sp3); font-size: 0.9rem; }
      .accordion-body { padding: 0 var(--sp3) var(--sp2); }
    }

    @media (min-width: 768px) {
      .hero-section .container {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: var(--sp5);
        align-items: center;
      }
      .hero__col-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--sp3);
      }
      .hero__bonus-card { margin-top: 0; width: 100%; text-align: center; }
    }

    @media (min-width: 1024px) {
      .timeline__steps { flex-direction: row; }
      .timeline__step { flex-direction: column; align-items: center; text-align: center; flex: 1; }
      .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
    }

    @media (min-width: 1440px) {
      h1 { font-size: 4.2rem; }
      h2 { font-size: 2.8rem; }
    }