/* HERO */
.hero-section {
  min-height: 92vh;
  overflow: hidden;
  padding: var(--sp6) 0;
  position: relative;
}

.hero-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123, 47, 247, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0, 151, 178, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, var(--c1) 0%, #060618 40%, #0a1240 100%);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

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

.hero-inner {
  align-items: center;
  display: grid;
  gap: var(--sp5);
  grid-template-columns: 1fr;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2);
  margin-bottom: var(--sp4);
}

.stat-pill {
  align-items: center;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  color: var(--fg2);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
}

.stat-pill .dot {
  background: var(--acc);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  width: 7px;
}

.stat-pill .dot.live {
  animation: pulse-dot 1.5s infinite;
}

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

.hero-headline {
  color: var(--fg);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--sp3);
}

.hero-headline .accent-text {
  background: linear-gradient(135deg, var(--acc) 0%, #7b2ff7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--fg2);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: var(--sp4);
  max-width: 560px;
}

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

.hero-cta-group .cta-button {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

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

.trust-item {
  align-items: center;
  color: var(--fg3);
  display: flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 0.4rem;
}

.trust-item .trust-icon {
  color: var(--acc);
  font-size: 1rem;
}

.hero-bonus-card {
  background: rgba(10, 18, 64, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: var(--rad-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow);
  padding: var(--sp4);
}

.bonus-card-header {
  align-items: center;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp3);
  padding-bottom: var(--sp3);
}

.bonus-card-title {
  color: var(--fg3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-card-badge {
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(123,47,247,0.2));
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 50px;
  color: var(--acc);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  text-transform: uppercase;
}

.bonus-amount {
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bonus-amount span {
  background: linear-gradient(135deg, var(--gold), #ff9d00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-subtitle {
  color: var(--fg2);
  font-size: 0.9rem;
  margin-bottom: var(--sp3);
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  margin-bottom: var(--sp3);
}

.bonus-features li {
  align-items: center;
  color: var(--fg2);
  display: flex;
  font-size: 0.88rem;
  gap: 0.6rem;
}

.bonus-features li::before {
  background: var(--acc);
  border-radius: 50%;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}

.bonus-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.bonus-fine-print {
  color: var(--fg3);
  font-size: 0.72rem;
  margin-bottom: 0;
  margin-top: var(--sp2);
  text-align: center;
}

.countdown-strip {
  background: linear-gradient(135deg, rgba(123,47,247,0.15), rgba(0,229,255,0.1));
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--rad);
  margin-top: var(--sp3);
  padding: var(--sp2) var(--sp3);
  text-align: center;
}

.countdown-label {
  color: var(--fg3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.countdown-timer {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.countdown-unit {
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: var(--rad);
  display: flex;
  flex-direction: column;
  min-width: 52px;
  padding: 0.4rem 0.6rem;
}

.countdown-num {
  color: var(--acc);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.countdown-lbl {
  color: var(--fg3);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-sep {
  color: var(--acc);
  font-size: 1.2rem;
  font-weight: 800;
}

@media (min-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
  }
}

/* REGISTRATION / TIMELINE */
.registration {
  padding: var(--sp6) 0;
  position: relative;
}

.registration::before {
  background: radial-gradient(ellipse at 0% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

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

.timeline-vertical {
  list-style: none;
  margin-bottom: var(--sp4);
  position: relative;
}

.timeline-vertical::before {
  background: linear-gradient(to bottom, var(--acc), transparent);
  content: '';
  left: 19px;
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
}

.timeline-item {
  align-items: flex-start;
  display: flex;
  gap: var(--sp3);
  margin-bottom: var(--sp4);
  position: relative;
}

.timeline-marker {
  align-items: center;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  color: var(--c1);
  display: flex;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.timeline-content {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--rad);
  flex: 1;
  padding: var(--sp3);
}

.timeline-content h3 {
  font-size: 1rem;
  margin-bottom: var(--sp1);
}

.timeline-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* BONUSES */
.bonuses {
  padding: var(--sp6) 0;
  position: relative;
}

.bonuses::before {
  background: radial-gradient(ellipse at 100% 50%, rgba(123, 47, 247, 0.08) 0%, transparent 60%);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

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

/* GAME LIBRARY */
.game-library {
  padding: var(--sp6) 0;
}

/* TRUST SECURITY */
.trust-security {
  padding: var(--sp6) 0;
  position: relative;
}

.trust-security::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.07) 0%, transparent 60%);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.trust-security .container {
  position: relative;
  z-index: 1;
}

.trust-security p {
  margin-top: var(--sp3);
}

/* PAYMENTS */
.payments {
  padding: var(--sp6) 0;
}

/* MOBILE ACCESS */
.mobile-access {
  padding: var(--sp6) 0;
  position: relative;
}

.mobile-access::before {
  background: radial-gradient(ellipse at 0% 100%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.mobile-access .container {
  position: relative;
  z-index: 1;
}

/* GEO AVAILABILITY */
.geo-availability {
  padding: var(--sp5) 0;
}

.geo-availability .highlight-box {
  border-left-color: var(--danger);
}

.geo-availability .highlight-box p {
  color: #ffa0b0;
  margin-bottom: 0;
}

/* FAQ */
.faq {
  padding: var(--sp6) 0;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.accordion-header {
  margin: 0;
}

.accordion-header button {
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: var(--sp3) 0;
  padding-right: 2rem;
  position: relative;
  text-align: left;
  transition: var(--trans);
  width: 100%;
}

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

.accordion-header button::after {
  color: var(--acc);
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--trans);
}

.accordion-header button[aria-expanded="true"]::after {
  content: '−';
}

.accordion-body {
  display: none;
  padding: 0 0 var(--sp3);
}

.accordion-body.open {
  display: block;
}

.accordion-body p {
  color: #000;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Section divider */
.section-divider {
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
  border: none;
  height: 1px;
  margin: 0;
  width: 100%;
}

/* Glow orb decoration */
.glow-orb {
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  position: absolute;
}

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

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