/* HERO */
.hero-section {
  position: relative;
  padding: var(--space-7) 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-9) 0%, var(--color-1) 40%, var(--color-2) 70%, var(--color-9) 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(192,38,211,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 50vw;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(192,38,211,0.25), rgba(124,58,237,0.2));
  border: 1px solid rgba(232,121,249,0.4);
  border-radius: var(--radius-4);
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-5);
  margin-bottom: var(--space-3);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-4);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

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

.hero-section h1 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, var(--color-8) 0%, var(--color-6) 50%, var(--color-7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-section p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-7);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-bottom: var(--space-4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-4);
  flex-shrink: 0;
}

.hero-separator {
  color: rgba(255,255,255,0.2);
}

/* REGISTRATION SECTION */
.registration-section {
  padding: var(--space-6) 0;
  background: var(--color-9);
}

.registration-section .container,
.bonuses-section .container,
.games-section .container,
.payments-section .container,
.security-section .container,
.platform-section .container,
.support-section .container,
.faq-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* BONUSES SECTION */
.bonuses-section {
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, var(--color-9) 0%, var(--color-1) 50%, var(--color-9) 100%);
}

.bonus-card .content-image {
  border-radius: var(--radius-1);
  margin-bottom: var(--space-2);
}

.bonus-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
  color: var(--color-7);
}

.bonus-terms {
  margin-top: var(--space-4);
}

/* GAMES SECTION */
.games-section {
  padding: var(--space-6) 0;
  background: var(--color-9);
}

.category-card h4 {
  color: var(--color-5);
  font-size: 1rem;
  margin-bottom: var(--space-1);
}

.category-card p {
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255,255,255,0.7);
}

/* PAYMENTS SECTION */
.payments-section {
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, var(--color-9) 0%, var(--color-1) 50%, var(--color-9) 100%);
}

/* SECURITY SECTION */
.security-section {
  padding: var(--space-6) 0;
  background: var(--color-9);
}

/* PLATFORM SECTION */
.platform-section {
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, var(--color-9) 0%, var(--color-1) 50%, var(--color-9) 100%);
}

/* SUPPORT SECTION */
.support-section {
  padding: var(--space-6) 0;
  background: var(--color-9);
}

/* FAQ SECTION */
.faq-section {
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, var(--color-9) 0%, var(--color-1) 100%);
}

/* Section decorative dividers */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,38,211,0.3), transparent);
  margin: 0;
}

/* Mobile overlay for nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.nav-overlay.show {
  display: block;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-stats {
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: calc(var(--space-7) * 1.2) 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: var(--space-3) 0;
    min-height: unset;
  }

  .section-wrapper,
  .registration-section,
  .bonuses-section,
  .games-section,
  .payments-section,
  .security-section,
  .platform-section,
  .support-section,
  .faq-section {
    padding: var(--space-5) 0;
  }

  h2::after {
    width: 40px;
  }

  dl {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  dt {
    margin-top: var(--space-1);
  }

  .hero-stats {
    gap: var(--space-3);
  }

  .hero-stat-value {
    font-size: 1.6rem;
  }
}