/* =============================================
   SUPERBET CASINO — styles.css
   ============================================= */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CSS VARIABLES ---- */
:root {
  --red: #E80105;
  --red-dark: #b50003;
  --red-light: #ff2a2d;
  --white: #ffffff;
  --black: #0a0a0a;
  --dark: #111318;
  --dark2: #1c2030;
  --gray: #f4f5f7;
  --gray2: #e8eaed;
  --gray-text: #6b7280;
  --gold: #f5c518;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,.18);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.25);
  --shadow-red: 0 4px 20px rgba(232,1,5,.35);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-h: 72px;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 50%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.15);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ff3d3f 0%, var(--red-light) 50%, var(--red) 100%);
  box-shadow: 0 6px 30px rgba(232,1,5,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:active {
  box-shadow: 0 2px 10px rgba(232,1,5,.4);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: inset 0 0 0 0 rgba(255,255,255,.1);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn--outline-dark {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow-sm);
}
.btn--outline-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,.25);
  box-shadow: var(--shadow-sm);
}
.btn--outline-light:hover {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--xl {
  font-size: 1.15rem;
  padding: 16px 36px;
  min-height: 56px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  transition: background .3s;
}

.site-header.scrolled {
  background: rgba(17,19,24,.97);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* NAV */
.header__nav { display: flex; align-items: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav__link {
  color: rgba(255,255,255,.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav__link--cta {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  box-shadow: var(--shadow-red);
}
.nav__link--cta:hover { background: var(--red-light); color: #fff; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  background: var(--dark);
  padding-top: var(--header-h);
}

.hero__image-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  background: var(--dark2);
}

.hero__img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}

.hero__image-wrap:hover .hero__img { transform: scale(1.02); }

.hero__overlay {
  background: linear-gradient(to bottom, rgba(10,10,10,.3) 0%, rgba(10,10,10,.85) 60%, #0a0a0a 100%);
  padding: 40px 0 60px;
}

.hero__content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: .95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.hero__highlight {
  color: var(--red);
  -webkit-text-stroke: 0px;
  text-shadow: 0 0 30px rgba(232,1,5,.6);
}

.hero__bonus-text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.5;
}

.hero__bonus-text strong { color: var(--gold); }

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section {
  padding: 72px 0;
}

.section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.section__title--light { color: #fff; }

.section__sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 700px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.section__sub--light { color: rgba(255,255,255,.75); }

.text-red { color: var(--red); }
.text-yellow { color: var(--gold); }

/* MEDIA BLOCK */
.media-block {
  display: block;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.06);
  transition: transform .25s, box-shadow .25s;
}
.media-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

/* =============================================
   ADVANTAGES
   ============================================= */
.advantages { background: #fff; }

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

.adv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray2);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.adv-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.adv-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 10px;
}
.adv-card__text { font-size: .92rem; color: var(--gray-text); line-height: 1.6; }

/* =============================================
   BONUS / PROMO
   ============================================= */
.bonus-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,1,5,.15) 0%, transparent 70%);
  pointer-events: none;
}

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.bonus-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gray2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,.4); }

.bonus-card--featured {
  background: rgba(232,1,5,.08);
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(232,1,5,.2);
}

.bonus-card__ribbon {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px 4px;
  border-radius: 0 0 8px 8px;
}

.bonus-card__icon { font-size: 2rem; margin-bottom: 12px; }

.bonus-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 10px;
}

.bonus-card__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.bonus-card__desc {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bonus-card__list {
  margin-bottom: 20px;
}
.bonus-card__list li {
  font-size: .88rem;
  color: var(--dark);
  padding: 4px 0;
}

/* =============================================
   HOW TO START
   ============================================= */
.how-to { background: #fff; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--gray2);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .85;
}

.step-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-card__text { font-size: .9rem; color: var(--gray-text); line-height: 1.6; }

.how-to__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* =============================================
   SPORT
   ============================================= */
.sport-section {
  background: #fff;
}

.sport__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.sport-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.sport-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(232,1,5,.2);
}

.sport-card__emoji { font-size: 2rem; margin-bottom: 10px; }

.sport-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 10px;
}

.sport-card__text {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* =============================================
   CASINO
   ============================================= */
.casino-section { background: #fff; }

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

.casino-card {
  background: var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray2);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.casino-card__media {
  display: block;
  overflow: hidden;
  max-height: 220px;
}
.casino-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.casino-card:hover .casino-card__media img { transform: scale(1.04); }

.casino-card__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.casino-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
}

.casino-card__text {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
}

/* =============================================
   MOBILE
   ============================================= */
.mobile-section {
  background: #fff;
}

.mobile__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.mobile-feat:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.3); }

.mobile-feat__icon { font-size: 2rem; margin-bottom: 12px; }

.mobile-feat__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 10px;
}

.mobile-feat__text { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

.mobile__cta { display: flex; justify-content: center; }

/* =============================================
   PAYMENTS
   ============================================= */
.payments-section { background: #fff; }

.payments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.pay-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  border: 1px solid var(--gray2);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pay-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--red); }

.pay-card__icon { font-size: 2rem; margin-bottom: 10px; }

.pay-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 4px;
}

.pay-card__info { font-size: .85rem; color: var(--gray-text); margin-bottom: 4px; }
.pay-card__detail { font-size: .8rem; color: var(--gray-text); }

.payments__note {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* =============================================
   SUPPORT
   ============================================= */
.support-section {
  background: #fff;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.support-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.35); }

.support-card__icon { font-size: 2rem; }

.support-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
}

.support-card__text { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; flex: 1; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: #fff; }

.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: var(--gray);
  border: none;
  padding: 18px 22px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-item__q:hover { background: var(--gray2); }
.faq-item__q[aria-expanded="true"] { background: var(--dark); color: #fff; }

.faq-item__arrow {
  flex-shrink: 0;
  font-size: .75rem;
  transition: transform .25s;
}
.faq-item__q[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }

.faq-item__a {
  display: none;
  padding: 18px 22px;
  font-size: .95rem;
  color: var(--gray-text);
  line-height: 1.7;
  background: #fff;
  border-top: 1px solid var(--gray2);
}
.faq-item__a.open { display: block; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,1,5,.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.final-cta__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.final-cta__bonus {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.3;
}
.final-cta__bonus strong { color: #fff; font-size: .9em; }

.final-cta__sub {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

.final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.final-cta__media {
  max-width: 680px;
  margin: 0 auto 28px;
  border-color: rgba(255,255,255,.08);
}

.final-cta__disclaimer {
  font-size: .78rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #fff;
  border-top: 3px solid var(--red);
}

.footer__inner { padding-top: 56px; padding-bottom: 32px; }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray2);
  margin-bottom: 28px;
}

.footer__logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 340px;
}

.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__badge {
  background: rgba(255,255,255,.06);
  color: var(--gray-text);
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}

.footer__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 16px;
}

.footer__nav { display: flex; flex-direction: column; gap: 8px; }

.footer__nav a {
  font-size: .88rem;
  color: var(--gray-text);
  transition: color .2s;
  padding: 2px 0;
}
.footer__nav a:hover { color: var(--dark); }

.footer__legal {
  font-size: .78rem;
  color: var(--gray-text);
  line-height: 1.6;
  text-align: center;
}
.footer__legal strong { color: var(--dark); }

/* =============================================
   CATFISH
   ============================================= */
.catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--dark);
  border-top: 3px solid var(--red);
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  padding: env(safe-area-inset-bottom, 0) 0 0;
}

.catfish__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}

.catfish__text {
  flex: 1;
  min-width: 0;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}

.catfish__btn { flex-shrink: 0; min-height: 40px; padding: 10px 20px; font-size: .9rem; }

.catfish__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color .2s;
}
.catfish__close:hover { color: #fff; }

/* =============================================
   EXIT POPUP
   ============================================= */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.popup-overlay.visible { display: flex; }

.popup {
  background: var(--dark);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,.6), 0 0 40px rgba(232,1,5,.2);
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.popup__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.popup__close:hover { color: #fff; }

.popup__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.popup__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.popup__bonus {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
}
.popup__bonus span { font-size: .85em; color: rgba(255,255,255,.8); }

.popup__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.popup__btn { width: 100%; margin-bottom: 12px; }

.popup__skip {
  background: none;
  border: none;
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
  text-decoration: underline;
}
.popup__skip:hover { color: rgba(255,255,255,.6); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sport__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
  }
  .nav__link { font-size: .85rem; padding: 6px 10px; }
}

/* Mobile Nav */
@media (max-width: 768px) {
  .burger { display: flex; }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    border-top: 2px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    padding: 12px 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .header__nav.open { display: block; }

  .nav__list { flex-direction: column; gap: 4px; padding: 0 16px; }
  .nav__link { width: 100%; padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .nav__link--cta { margin-top: 8px; text-align: center; }

  /* Sections */
  .section { padding: 52px 0; }

  .advantages__grid { grid-template-columns: 1fr; }
  .bonus__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .sport__grid { grid-template-columns: 1fr; }
  .casino__grid { grid-template-columns: 1fr; }
  .mobile__grid { grid-template-columns: 1fr; }
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: 1fr; }

  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; }

  .final-cta__btns { flex-direction: column; align-items: stretch; }
  .final-cta__btns .btn { width: 100%; }

  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand { grid-column: auto; }

  .catfish__inner { flex-wrap: wrap; }
  .catfish__text { width: 100%; -webkit-line-clamp: 1; }
  .catfish__btn { flex: 1; }
}

/* Small mobile */
@media (max-width: 480px) {
  :root { --header-h: 62px; }

  .hero__title { font-size: clamp(2.4rem, 14vw, 4rem); }

  .payments__grid { grid-template-columns: 1fr; }

  .btn--xl { font-size: 1rem; padding: 14px 22px; }

  .popup { padding: 28px 20px; }
  .popup__title { font-size: 1.4rem; }
  .popup__bonus { font-size: 1.3rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 2.2rem; }
}

/* ---- WHITE-BG SECTION TEXT OVERRIDES ---- */
.bonus-section .section__title,
.sport-section .section__title,
.mobile-section .section__title,
.support-section .section__title,
.final-cta__title { color: var(--dark) !important; }

.bonus-section .section__sub,
.sport-section .section__sub,
.mobile-section .section__sub,
.support-section .section__sub { color: var(--gray-text) !important; }

.bonus-section .bonus-card { border-color: var(--gray2); }
.bonus-card--featured { border-color: var(--red) !important; }

.sport-card { border-color: var(--gray2); background: var(--gray); }
.sport-card:hover { border-color: var(--red); background: #fff; }

.mobile-feat { border-color: var(--gray2); background: var(--gray); }
.support-card { border-color: var(--gray2); background: var(--gray); }

.final-cta__bonus { color: var(--red); }
.final-cta__bonus strong { color: var(--dark); }
.final-cta__badge { background: var(--red); color: #fff; }

.site-footer { border-top-color: var(--red); }
.footer__brand img { filter: none; }
.footer__heading { color: var(--red); }