:root {
  --brand-primary:     #1a0e3e;
  --brand-secondary:   #ff00ff;
  --brand-accent:      #ffd700;
  --brand-bg:          #0f0a2e;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0d0829;
  --brand-btn-bg:      #e6007e;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   16px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--brand-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-accent);
  color: #000;
  padding: 10px 20px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
}

/* ─── HEADER & NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(255,0,255,0.18);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(255,0,255,0.15);
  color: var(--brand-accent);
}

.nav-cta-btn {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text) !important;
  border-radius: var(--brand-btn-radius);
  padding: 10px 22px !important;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,0,126,0.45);
  background: var(--brand-btn-bg) !important;
  color: #fff !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-text);
  font-size: 22px;
  border-radius: 8px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1.2;
}

.mobile-menu-btn:hover {
  background: rgba(255,0,255,0.15);
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    gap: 4px;
    border-bottom: 2px solid var(--brand-secondary);
  }
  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
  }
}

/* ─── HERO ─── */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: linear-gradient(135deg, #0d0829 0%, #1a0e3e 40%, #2d1060 70%, #1a0050 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
  color: #0d0829;
  font-family: var(--brand-body-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 span.accent-text {
  color: var(--brand-accent);
}

.hero-content h1 span.pink-text {
  color: var(--brand-secondary);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 1.9rem;
  color: var(--brand-accent);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-card {
  background: linear-gradient(145deg, rgba(255,0,255,0.15), rgba(26,14,62,0.6));
  border: 1px solid rgba(255,0,255,0.3);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 60px rgba(255,0,255,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), var(--brand-accent), transparent);
}

.hero-promo-icon {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.6));
}

.hero-promo-title {
  font-family: var(--brand-head-font);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-promo-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-promo-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.promo-detail-item {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 8px;
}

.promo-detail-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
}

.promo-detail-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 60px 20px 40px;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
  }
  .hero-promo-details {
    grid-template-columns: 1fr;
  }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

.btn-hero {
  background: linear-gradient(135deg, var(--brand-btn-bg), #c4006a);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 24px rgba(230,0,126,0.5);
  font-size: 17px;
  padding: 16px 38px;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230,0,126,0.65);
  color: #fff;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-accent), #e6b800);
  color: #0d0829;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.5);
  color: #0d0829;
}

.btn-outline {
  background: transparent;
  color: var(--brand-text);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
  transform: translateY(-2px);
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-btn-bg), #c4006a);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(230,0,126,0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.2);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,0,126,0.7);
  color: #fff;
}

.floating-cta:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ─── SECTION SHARED ─── */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: #fff;
}

.section-title span {
  color: var(--brand-accent);
}

.section-title span.pink {
  color: var(--brand-secondary);
}

.section-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.65;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─── SECTION: TRUST BAR ─── */
.trust-bar {
  background: rgba(255,0,255,0.06);
  border-top: 1px solid rgba(255,0,255,0.15);
  border-bottom: 1px solid rgba(255,0,255,0.15);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

.trust-item .trust-icon {
  font-size: 20px;
}

/* ─── SECTION: GAMES GRID ─── */
.games-section {
  background: linear-gradient(180deg, #0f0a2e 0%, #150d40 100%);
}

.games-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--brand-body-font);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand-btn-bg);
  color: #fff;
  border-color: var(--brand-btn-bg);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(255,0,255,0.15), rgba(26,14,62,0.8));
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 10px 12px;
  min-height: 160px;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255,0,255,0.3);
  border-color: rgba(255,0,255,0.4);
}

.game-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.5));
}

.game-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  position: relative;
  z-index: 2;
}

.game-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-btn-bg);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 10px;
}

.game-tag.gold {
  background: var(--brand-accent);
  color: #0d0829;
}

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── SECTION: BONUS SPLIT ─── */
.bonus-section {
  background: linear-gradient(180deg, #150d40 0%, #1a0e3e 100%);
}

.bonus-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

.bonus-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.bonus-content p:last-of-type {
  margin-bottom: 28px;
}

.bonus-panel {
  background: linear-gradient(145deg, rgba(255,0,255,0.12), rgba(26,14,62,0.5));
  border: 1px solid rgba(255,0,255,0.25);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,0,255,0.12);
  position: relative;
  overflow: hidden;
}

.bonus-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), var(--brand-accent), transparent);
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: 3.2rem;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bonus-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .bonus-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bonus-panel {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ─── SECTION: FEATURES THREE-COL ─── */
.features-section {
  background: #0f0a2e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(26,14,62,0.6));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(255,0,255,0.35);
  transform: translateY(-4px);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: block;
}

.feature-title {
  font-family: var(--brand-head-font);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.feature-text {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── SECTION: PAYMENTS ASYMMETRIC ─── */
.payments-section {
  background: linear-gradient(180deg, #1a0e3e 0%, #150d40 100%);
}

.payments-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.payments-sidebar h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.payments-sidebar p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.payment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.payment-card:hover {
  border-color: rgba(255,215,0,0.35);
  background: rgba(255,215,0,0.06);
}

.payment-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.payment-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 5px;
}

.payment-speed {
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 700;
}

@media (max-width: 860px) {
  .payments-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── SECTION: SPORTS BETTING FULL WIDTH ─── */
.sports-section {
  background: linear-gradient(135deg, #150d40 0%, #0d0829 50%, #1a0e3e 100%);
  position: relative;
  overflow: hidden;
}

.sports-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,0,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sports-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sports-content .section-subtitle {
  margin-bottom: 28px;
}

.sports-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.sports-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.sports-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.sports-list li::before {
  content: '●';
  color: var(--brand-secondary);
  font-size: 10px;
  flex-shrink: 0;
}

.sports-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sport-stat-card {
  background: linear-gradient(145deg, rgba(255,0,255,0.1), rgba(26,14,62,0.5));
  border: 1px solid rgba(255,0,255,0.2);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sport-stat-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.sport-stat-info strong {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  color: var(--brand-accent);
}

.sport-stat-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 860px) {
  .sports-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sports-list {
    grid-template-columns: 1fr;
  }
}

/* ─── SECTION: PROVIDERS MARQUEE ─── */
.providers-section {
  background: #0f0a2e;
  padding: 50px 0;
  overflow: hidden;
}

.providers-track {
  display: flex;
  gap: 28px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.providers-track:hover {
  animation-play-state: paused;
}

.provider-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: all 0.2s;
  cursor: default;
}

.provider-badge:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-accent);
  background: rgba(255,0,255,0.08);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION: MAIN CONTENT (TEXT) ─── */
.content-section {
  background: linear-gradient(180deg, #150d40 0%, #0f0a2e 100%);
}

.content-prose h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  margin-top: 36px;
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose h3 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 10px;
  margin-top: 24px;
}

.content-prose p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.content-prose strong {
  color: #fff;
  font-weight: 700;
}

.content-prose a {
  color: var(--brand-secondary);
  font-weight: 600;
}

.content-prose a:hover {
  color: var(--brand-accent);
}

/* ─── SECTION: CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #1a0e3e 0%, #2d1060 50%, #1a0050 100%);
  border-top: 1px solid rgba(255,0,255,0.2);
  border-bottom: 1px solid rgba(255,0,255,0.2);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,0,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.cta-banner-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ─── SECTION: FAQ ─── */
.faq-section {
  background: #0f0a2e;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-sidebar h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-sidebar p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255,0,255,0.25);
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--brand-secondary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.68;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: #080618;
  border-top: 1px solid rgba(255,0,255,0.12);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-heading {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  font-weight: 600;
}

.footer-links li a:hover {
  color: var(--brand-accent);
}

.footer-middle {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-badge .fl-icon {
  font-size: 16px;
}

.age-badge {
  background: linear-gradient(135deg, #e6007e, #c4006a);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--brand-head-font);
}

.footer-responsible {
  text-align: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-responsible p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-responsible a {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-decoration: underline;
}

.footer-responsible a:hover {
  color: var(--brand-accent);
}

.footer-help {
  background: rgba(255,0,255,0.05);
  border-top: 1px solid rgba(255,0,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-help p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.help-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  text-decoration: underline;
  transition: color 0.2s;
}

.help-link:hover {
  color: var(--brand-accent);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .help-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding-top: 100px;
  min-height: 80vh;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.legal-content .last-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-content ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--brand-secondary);
}

/* ─── UTILITY ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,255,0.25), transparent);
  margin: 0;
}

.accent { color: var(--brand-accent); }
.pink { color: var(--brand-secondary); }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }