.heroSection {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,16,46,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 100%, rgba(240,192,64,0.08) 0%, transparent 60%),
              var(--surface);
}

.heroSection::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.heroInner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accentLight);
  border: 1px solid rgba(200,16,46,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.heroBadge span {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

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

.heroTitle {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--textPrimary);
}

.heroTitle em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 20%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroDesc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--textSecondary);
  margin-bottom: 36px;
  max-width: 640px;
  line-height: 1.8;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.heroCta {
  font-size: 16px;
  padding: 16px 40px;
}

.heroNote {
  font-size: 13px;
  color: var(--textMuted);
}

.heroNote strong { color: var(--textSecondary); }

.heroStats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--surfaceBorder);
}

.statItem { display: flex; flex-direction: column; gap: 4px; }

.statValue {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #f8d06a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.statLabel {
  font-size: 13px;
  color: var(--textMuted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.heroTrustRow {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trustPill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surfaceElevated);
  border: 1px solid var(--surfaceBorder);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--textSecondary);
  font-weight: 500;
}

.trustPillDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.registrationSection { background: var(--surface); }
.mobileSection { background: var(--surfaceCard); }
.bonusesSection { background: var(--surface); }
.paymentsSection { background: var(--surfaceCard); }
.gamesSection { background: var(--surface); }
.providersSection { background: var(--surfaceCard); }
.licenceSection { background: var(--surface); }
.supportSection { background: var(--surfaceCard); }
.faqSection { background: var(--surface); }

.sectionHeadingCenter { text-align: center; }
.sectionHeadingCenter::after { margin: 12px auto 0; }

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

@media (max-width: 767px) {
  .heroSection { padding: 60px 0 60px; }
  .heroStats { gap: 24px; }
  .heroTrustRow { gap: 10px; }
  .cardsGrid2, .cardsGrid3 { grid-template-columns: 1fr; }
  .sectionWrapper { padding: 56px 0; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cardsGrid3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cardsGrid2 { grid-template-columns: repeat(2, 1fr); }
  .cardsGrid3 { grid-template-columns: repeat(3, 1fr); }
}