/* ============================================================
   FONT FACES
   ============================================================ */
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.woff2') format('woff2'),
       url('../fonts/Rubik-Regular.woff')  format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Medium.woff2') format('woff2'),
       url('../fonts/Rubik-Medium.woff')  format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Bold.woff2') format('woff2'),
       url('../fonts/Rubik-Bold.woff')  format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-ExtraBold.woff2') format('woff2'),
       url('../fonts/Rubik-ExtraBold.woff')  format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
       url('../fonts/Inter-Regular.woff')  format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
       url('../fonts/Inter-SemiBold.woff')  format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
       url('../fonts/Inter-Bold.woff')  format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --gold:        #FFB800;
  --gold-light:  #FFD84D;
  --gold-dark:   #CC9200;
  --red:         #E8212B;
  --bg-dark:     #0A0A14;
  --bg-card:     #12121F;
  --bg-card2:    #181828;
  --text:        #FFFFFF;
  --text-muted:  #9999BB;
  --border:      rgba(255,184,0,0.18);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(10, 10, 20, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header__logo img {
  height: 38px;
  width: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-login img { width: 18px; height: 18px; }
.btn-login:hover {
  border-color: var(--gold);
  background: rgba(255,184,0,0.06);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero2.png') center center / cover no-repeat;
  z-index: 0;
}

/* Multi-layer gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(10,10,20,0.99) 0%,
      rgba(10,10,20,0.80) 30%,
      rgba(10,10,20,0.08) 52%,
      rgba(10,10,20,0.0)  100%),
    linear-gradient(to top,
      rgba(10,10,20,0.45) 0%,
      transparent 22%);
}

/* Animated gold glow blob */
.hero__glow {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.13) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.7; }
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp var(--dur, 6s) var(--delay, 0s) ease-in infinite;
}
.particle:nth-child(2)  { left: 5%;  --dur:7s;  --delay:0.5s; background: #FFD84D; width:3px; height:3px; }
.particle:nth-child(3)  { left: 12%; --dur:5s;  --delay:1.2s; width:5px; height:5px; }
.particle:nth-child(4)  { left: 20%; --dur:8s;  --delay:0.3s; width:2px; height:2px; background:#fff; opacity:0; }
.particle:nth-child(5)  { left: 28%; --dur:6s;  --delay:2s;   width:4px; height:4px; }
.particle:nth-child(6)  { left: 8%;  --dur:9s;  --delay:1.8s; width:3px; height:3px; background: #FF4D4D; }
.particle:nth-child(7)  { left: 35%; --dur:7s;  --delay:0.9s; width:2px; height:2px; background:#fff; }
.particle:nth-child(8)  { left: 3%;  --dur:5.5s;--delay:3s;   width:5px; height:5px; }
.particle:nth-child(9)  { left: 16%; --dur:6.5s;--delay:1.5s; width:3px; height:3px; background:#FFD84D; }
.particle:nth-child(10) { left: 24%; --dur:8.5s;--delay:0.7s; width:4px; height:4px; background:#FF4D4D; }

@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0);     opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 120px 40px 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,184,0,0.4);
  background: rgba(255,184,0,0.1);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

/* ---- BONUS CARD ---- */
.hero__bonus-card {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.bonus-pill {
  flex: 1;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,184,0,0.25);
  background: rgba(255,184,0,0.07);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.bonus-pill::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,184,0,0.08) 50%, transparent 100%);
  animation: spinGlow 6s linear infinite;
  pointer-events: none;
}
@keyframes spinGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.bonus-pill:hover {
  border-color: rgba(255,184,0,0.55);
  background: rgba(255,184,0,0.12);
}

.bonus-pill__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bonus-pill__value {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255,184,0,0.4);
}
.bonus-pill__value--spins {
  color: #fff;
  text-shadow: none;
}
.bonus-pill__sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- CTA BUTTONS ---- */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Primary CTA — pulsing gold */
.btn-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(135deg, #FFD84D 0%, #FFB800 50%, #FF8C00 100%);
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #0A0A14;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow:
    0 0 0   0px rgba(255,184,0,0.5),
    0 8px 32px rgba(255,184,0,0.35),
    0 2px 8px  rgba(0,0,0,0.4);
  animation: ctaPulse 2.4s ease-in-out infinite;
  text-decoration: none;
}

/* Shimmer sweep on primary CTA */
.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.38) 50%,
    transparent 100%
  );
  animation: shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 0 0   0px rgba(255,184,0,0.5),
      0 8px 32px rgba(255,184,0,0.35),
      0 2px 8px rgba(0,0,0,0.4);
  }
  50% {
    box-shadow:
      0 0 0  10px rgba(255,184,0,0),
      0 8px 48px rgba(255,184,0,0.6),
      0 2px 8px rgba(0,0,0,0.4);
  }
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow:
    0 0 0   0px rgba(255,184,0,0.5),
    0 12px 48px rgba(255,184,0,0.55),
    0 4px 12px rgba(0,0,0,0.5);
}
.btn-cta-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta-primary .btn-arrow {
  display: inline-block;
  transition: transform 0.22s ease;
  font-size: 20px;
}
.btn-cta-primary:hover .btn-arrow {
  transform: translateX(5px);
}

/* Secondary CTA — outlined */
.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform 0.18s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-cta-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,184,0,0.12) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-cta-secondary:hover {
  border-color: rgba(255,184,0,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.btn-cta-secondary:hover::after { opacity: 1; }

/* ---- Disclaimer ---- */
.hero__disclaimer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.hero__disclaimer img { width: 20px; opacity: 0.5; }

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 80px 40px;
}
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,184,0,0.07);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features { background: var(--bg-dark); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(255,184,0,0.4);
  background: var(--bg-card2);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.feature-card__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.feature-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROVIDERS SECTION
   ============================================================ */
.providers {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 60px 0;
}

.providers__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Scrolling marquee track */
.providers__track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 36px;
}
.providers__track-wrap::before,
.providers__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.providers__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card), transparent);
}
.providers__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card), transparent);
}

.providers__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.providers__track:hover { animation-play-state: paused; }

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

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 64px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.provider-logo:hover {
  border-color: rgba(255,184,0,0.4);
  background: rgba(255,184,0,0.06);
  transform: scale(1.05);
}
.provider-logo img {
  max-height: 36px;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--transition), filter var(--transition);
}
.provider-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(0deg);
}

/* ============================================================
   BOTTOM CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 52px);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  position: relative;
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 48px;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(135deg, #FFD84D 0%, #FFB800 50%, #FF8C00 100%);
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0A0A14;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(255,184,0,0.4), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.cta-section__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.38) 50%, transparent 100%);
  animation: shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}
.cta-section__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 56px rgba(255,184,0,0.58), 0 4px 12px rgba(0,0,0,0.5);
}
.cta-section__btn:active { transform: scale(0.98); }
.cta-section__btn .btn-arrow {
  display: inline-block;
  transition: transform 0.22s ease;
}
.cta-section__btn:hover .btn-arrow { transform: translateX(5px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07070F;
  border-top: 1px solid rgba(255,184,0,0.1);
  padding: 56px 40px 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {}
.footer__brand-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer__brand-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__providers-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__providers-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer__providers-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition), background var(--transition);
}
.footer__providers-logos a:hover {
  border-color: rgba(255,184,0,0.3);
  background: rgba(255,184,0,0.05);
}
.footer__providers-logos img {
  height: 22px;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity var(--transition);
}
.footer__providers-logos a:hover img { opacity: 0.75; }

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,184,0,0.8); }

.footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__legal img { height: 32px; opacity: 0.5; }

.footer__cookie {
  text-align: center;
  padding-top: 20px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 16px;
}
.footer__cookie a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}
.footer__cookie a:hover { color: rgba(255,184,0,0.6); }

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header { padding: 0 20px; }
  .section { padding: 60px 20px; }
  .cta-section { padding: 80px 20px; }
  .footer { padding: 48px 20px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero {
    align-items: stretch;
    min-height: 100vh;
  }

  .hero__bg {
    background-position: center 20%;
  }

  /* Оверлей: прозрачный сверху, тёмный снизу — девушка видна вверху */
  .hero__overlay {
    background: linear-gradient(to bottom,
      rgba(10,10,20,0.0)  0%,
      rgba(10,10,20,0.0)  40%,
      rgba(10,10,20,0.75) 65%,
      rgba(10,10,20,0.96) 100%);
  }

  /* Весь контент прижат к низу */
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 20px 36px;
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    gap: 16px;
  }

  .hero__title {
    font-size: clamp(24px, 7vw, 34px);
    margin-bottom: 0;
  }

  .hero__subtitle { display: none; }

  .hero__bonus-card {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 0;
  }

  .bonus-pill {
    padding: 14px 16px;
  }

  .bonus-pill__value {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .hero__cta { gap: 10px; }

  .hero__cta .btn-cta-primary {
    font-size: 15px;
    padding: 16px 20px;
    white-space: nowrap;
  }

  .hero__disclaimer { margin-top: 0; }

  .cta-section__btn {
    font-size: 16px;
    padding: 16px 28px;
    white-space: nowrap;
  }

  .cta-section__title { font-size: clamp(24px, 7vw, 36px); }

  .hero__glow { display: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
