/* Hero */
.hero-section {
  position: relative;
  padding: var(--sp6) 0 !important;
  background: linear-gradient(135deg, #0d0618 0%, #1a0a2e 40%, #2d1054 100%) !important;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(224, 64, 251, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-section h1 {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--acc) 60%, var(--acc3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp3);
  max-width: 900px;
  line-height: 1.15;
}

.hero-section > .container > p {
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  color: var(--fg2);
  max-width: 700px;
  margin-bottom: var(--sp4);
  line-height: 1.8;
}

/* Hero trust bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2) var(--sp3);
  margin: var(--sp4) 0 var(--sp4);
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 64, 251, 0.1);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

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

/* Hero CTA */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2);
  align-items: center;
  margin-top: var(--sp3);
}

.hero-bonus-badge {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(224, 64, 251, 0.1) 100%);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: var(--rad);
  padding: var(--sp2) var(--sp3);
}

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

.hero-bonus-value {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: var(--acc3);
  line-height: 1.1;
}

/* Hero social proof */
.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp3);
  margin-top: var(--sp4);
  padding-top: var(--sp4);
  border-top: 1px solid rgba(224, 64, 251, 0.1);
}

.social-stat {
  display: flex;
  flex-direction: column;
}

.social-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--acc);
}

.social-stat-label {
  font-size: 0.8rem;
  color: var(--fg3);
  font-weight: 500;
}

/* Section headers */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acc);
  background: rgba(224, 64, 251, 0.1);
  border: 1px solid rgba(224, 64, 251, 0.25);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  margin-bottom: var(--sp2);
}

/* Registration / Timeline */
.registration .kyc-block h3 { -webkit-text-fill-color: var(--fg); }

/* Security cards */
.security .cards-grid-3 .info-card h3 {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bonus section */
.bonuses { position: relative; }

.content-image--native {
  display: flex;
  justify-content: center;
}

.content-image--native img {
  width: auto;
  max-width: 340px;
  height: auto;
  max-height: none;
  object-fit: initial;
}

/* Games section — Live Casino full-width card */
.info-card--full {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .info-card--full .content-image img {
    max-height: 360px;
  }
}

/* Games section */
.games .info-card h3 {
  background: linear-gradient(135deg, var(--acc) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Payments */
.payments .container > p:first-of-type { margin-top: var(--sp3); }

/* Mobile section */
.mobile-app .feature-block h3 {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Support */
.support .feature-list li::before { color: var(--acc); }

/* FAQ */
.faq { padding-bottom: var(--sp6) !important; }

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

  .hero-trust-bar { flex-wrap: nowrap; }

  main > section { padding: var(--sp6) 0; }
}

@media (min-width: 1024px) {
  .hero-section { padding: 7rem 0 !important; }

  .hero-section h1 { font-size: clamp(2.4rem, 3.8vw, 3.4rem); }
}

@media (max-width: 767px) {
  .hero-section { padding: 1.5rem 0 !important; }

  .hero-trust-bar { display: none; }

  .hero-section > .container > p { margin-bottom: var(--sp2); }

  .hero-cta-group { flex-direction: column; align-items: flex-start; margin-top: var(--sp2); }

  .hero-social-proof { margin-top: var(--sp2); padding-top: var(--sp2); gap: var(--sp2); }

  main > section { padding: var(--sp4) 0; }

  .info-card, .feature-block { padding: var(--sp3); }

  .card { padding: var(--sp3); }
}

@media (max-width: 320px) {
  .hero-section h1 { font-size: 1.7rem; }
  .hero-bonus-value { font-size: 1.3rem; }
}

/* Animated glow on CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(224, 64, 251, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(224, 64, 251, 0.7), 0 0 60px rgba(224, 64, 251, 0.2); }
}

.btn-primary-hero {
  animation: pulse-glow 2.5s ease-in-out infinite;
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
}

/* Scroll reveal utility */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fade-up 0.6s ease both; }

/* Section bg decoration */
.registration::before,
.games::before,
.mobile-app::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(224, 64, 251, 0.05) 0%, transparent 70%);
  pointer-events: none;
}