.hero-section {
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.hero-section::before {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 45, 135, 0.35), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(185, 29, 106, 0.25), transparent 50%);
  content: '';
  inset: 0;
  position: absolute;
  z-index: 0;
}

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

.hero-section h1 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 900px;
}

.hero-lead {
  color: var(--color-neutral-200);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin-bottom: var(--spacing-md);
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
}

.hero-badge {
  align-items: center;
  background: rgba(255, 45, 135, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-neutral-100);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.hero-badge-dot {
  background: var(--color-brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-brand-primary);
  height: 8px;
  width: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: var(--spacing-lg);
  max-width: 720px;
}

.hero-stat {
  background: linear-gradient(160deg, rgba(28, 28, 43, 0.7), rgba(20, 20, 31, 0.5));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}

.hero-stat-value {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stat-label {
  color: var(--color-neutral-300);
  display: block;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.security, .games, .bonuses, .banking, .login-access, .mobile, .support, .faq {
  position: relative;
}

.security h2, .games h2, .bonuses h2, .banking h2,
.login-access h2, .mobile h2, .support h2, .faq h2 {
  position: relative;
  padding-left: 1.25rem;
}

.security h2::before, .games h2::before, .bonuses h2::before, .banking h2::before,
.login-access h2::before, .mobile h2::before, .support h2::before, .faq h2::before {
  background: var(--gradient-brand);
  border-radius: 4px;
  content: '';
  height: 70%;
  left: 0;
  position: absolute;
  top: 15%;
  width: 5px;
}

.feature-blocks .info-card { margin: var(--spacing-md) 0; }

.timeline p {
  border-left: 2px solid var(--color-border);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.timeline p::before {
  background: var(--color-brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-brand-primary);
  content: '';
  height: 10px;
  left: -6px;
  position: absolute;
  top: 1rem;
  width: 10px;
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
}