/* HERO */
.hero-section {
  padding: 5rem 0 3rem;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,128,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(232,184,75,0.08) 0%, transparent 60%),
              var(--bg);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c9ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(0,201,255,0.15), rgba(124,58,237,0.15));
  border: 1px solid rgba(0,201,255,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1.5rem;
}

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

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

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #b8d4ff 40%, #00c9ff 70%, #e8b84b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--fg2);
  max-width: 750px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rad);
  padding: 0.9rem 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.hero-stat-val {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--fg2);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-icon {
  width: 18px;
  height: 18px;
  fill: var(--acc);
  flex-shrink: 0;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,201,255,0.07);
  border: 1px solid rgba(0,201,255,0.15);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  color: var(--fg2);
}
.players-count {
  font-weight: 700;
  color: var(--acc);
}

/* BRAND IDENTITY */
.brand-identity {
  background: var(--bg2);
}
.brand-identity::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
}

/* BONUSES */
.bonuses {
  background: radial-gradient(ellipse at 70% 0%, rgba(124,58,237,0.1) 0%, transparent 50%), var(--bg);
}

/* PAYMENTS */
.payments { background: var(--bg2); }

/* LICENSING */
.licensing {
  background: radial-gradient(ellipse at 30% 100%, rgba(0,128,255,0.1) 0%, transparent 50%), var(--bg);
}

/* CUSTOMER SUPPORT */
.customer-support { background: var(--bg2); }

/* GAME LIBRARY */
.game-library {
  background: radial-gradient(ellipse at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%), var(--bg);
}

/* LIMITATIONS */
.limitations { background: var(--bg2); }

/* FAQ */
.faq { background: var(--bg); }

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

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--rad);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--trans);
}
.accordion-item:hover { border-color: rgba(0,201,255,0.3); }

.accordion-header {
  margin: 0;
}
.accordion-header button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: var(--trans);
  gap: 1rem;
}
.accordion-header button:hover { color: var(--acc); }
.accordion-header button::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--acc);
  flex-shrink: 0;
  transition: var(--trans);
  line-height: 1;
}
.accordion-header button[aria-expanded="true"] { color: var(--acc); }
.accordion-header button[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(0deg);
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body.is-open {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.accordion-body p {
  font-size: 0.95rem;
  color: var(--fg2);
  margin: 0;
}

/* DIVIDERS */
section + section::before {
  content: none;
}

/* Section promo banner */
.bonus-highlight-banner {
  background: linear-gradient(135deg, #1a0e3d 0%, #0d1f4a 50%, #0a1e35 100%);
  border: 1px solid rgba(232,184,75,0.3);
  border-radius: var(--rad2);
  padding: 2rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.bonus-highlight-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,184,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-highlight-content h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.bonus-highlight-content p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--fg2);
}

/* Game provider pills */
.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.provider-tag {
  background: rgba(0,201,255,0.07);
  border: 1px solid rgba(0,201,255,0.15);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: var(--fg2);
  font-weight: 500;
}

/* Section CTA strip */
.section-cta-strip {
  background: linear-gradient(135deg, rgba(0,128,255,0.12), rgba(124,58,237,0.1));
  border: 1px solid rgba(0,201,255,0.15);
  border-radius: var(--rad2);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.section-cta-strip h3 {
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.section-cta-strip p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  section { padding: 2.5rem 0; }
  .hero-section { padding: 3rem 0 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-stat { min-width: 100px; }
  .bonus-highlight-banner { flex-direction: column; text-align: center; }
  .bonus-highlight-banner .btn { width: 100%; }
}

@media (min-width: 1024px) {
  .hero-section { padding: 6rem 0 4rem; }
  .hero-stats { gap: 1.25rem; }
}

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-title { font-size: 4rem; }
}