/* =========================================================
   TOTALBET – styles.css
   ========================================================= */

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

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #F2F5F6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS VARIABLES ---- */
:root {
  --red: #EA0709;
  --red-dark: #c50507;
  --red-light: #ff2528;
  --white: #ffffff;
  --bg: #F2F5F6;
  --bg-alt: #e8ecee;
  --text: #1a1a2e;
  --text-muted: #5a6070;
  --border: #d0d6db;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,.14);
  --shadow-lg: 0 8px 36px rgba(0,0,0,.18);
  --shadow-red: 0 4px 20px rgba(234,7,9,.35);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1200px;
  --header-h: 70px;
}

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

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  box-shadow: 0 2px 16px rgba(234,7,9,.5);
  height: var(--header-h);
}

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

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* NAV */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-link {
  color: rgba(255,255,255,.88);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,.18); color: var(--white); }
.nav-link--cta {
  background: var(--white);
  color: var(--red) !important;
  font-weight: 800;
  padding: 8px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.nav-link--cta:hover { background: #ffe0e0; transform: translateY(-1px); }

/* BURGER */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

.brand-highlight { color: var(--red); }

/* MEDIA CARD */
.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #fff;
  transition: transform .3s, box-shadow .3s;
  min-width: 0;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-card img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(234,7,9,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(234,7,9,.55);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(234,7,9,.3); }

.btn--ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 2px 8px rgba(234,7,9,.15);
}
.btn--ghost:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,7,9,.4);
}
.btn--ghost:active { transform: translateY(0); }

.btn--xl { font-size: 1.1rem; padding: 14px 36px; min-height: 54px; }
.btn--lg { font-size: 1.05rem; padding: 13px 32px; min-height: 50px; }
.btn--sm { font-size: .85rem; padding: 8px 18px; min-height: 38px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(160deg, #1a0002 0%, #2d0004 50%, #1a0002 100%);
  padding: 0 0 64px;
}

.hero-banner-link { display: block; }
.hero-media {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
}
.hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-content {
  padding-top: 40px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #ffcfcf;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-bonus-box {
  background: linear-gradient(135deg, rgba(234,7,9,.85), rgba(180,4,6,.9));
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  max-width: 680px;
  margin: 0 auto 32px;
  box-shadow: 0 6px 30px rgba(234,7,9,.5);
}

.hero-bonus-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

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

/* =========================================================
   ADVANTAGES
   ========================================================= */
.advantages { background: var(--bg); }

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

.adv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.adv-icon { font-size: 2.2rem; margin-bottom: 14px; }
.adv-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.adv-text { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }

/* =========================================================
   BONUSES
   ========================================================= */
.bonuses { background: #fff; }

.bonuses-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.bonus-main-card {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  box-shadow: var(--shadow-red);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.bonus-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
}

.bonus-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.bonus-highlight-text {
  background: rgba(255,255,255,.15);
  border-left: 4px solid rgba(255,255,255,.6);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.bonus-desc { font-size: .93rem; line-height: 1.65; opacity: .9; }

.bonus-main-card .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.bonus-main-card .btn--primary:hover { background: #ffe0e0; }

.bonus-side-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.bonus-side-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.bonus-side-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bonus-icon { font-size: 1.6rem; }
.bonus-side-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.bonus-side-card p { font-size: .88rem; color: var(--text-muted); }

.bonuses-media { max-width: 600px; margin: 0 auto; }
.bonuses-media a { display: block; }

/* =========================================================
   HOW TO START
   ========================================================= */
.how-to-start { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  opacity: .18;
  line-height: 1;
  margin-bottom: 10px;
}

.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

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

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

.sport-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.sport-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.sport-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.sport-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s;
  min-width: 0;
}
.sport-item:hover { background: #fff0f0; border-color: var(--red); }
.sport-emoji { font-size: 1.5rem; flex-shrink: 0; }
.sport-item strong { display: block; font-weight: 800; font-size: .95rem; margin-bottom: 3px; color: var(--text); }
.sport-item span { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }

.sport-media { min-width: 0; }
.sport-media a { display: block; }

/* =========================================================
   CASINO
   ========================================================= */
.casino { background: var(--bg); }

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

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

.casino-media { display: block; }
.media-card--casino img { max-height: 200px; object-fit: cover; border-radius: 0; border: none; }
.media-card--casino { border-radius: 0; border: none; box-shadow: none; }
.media-card--casino:hover { transform: none; box-shadow: none; }

.casino-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.casino-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.casino-info p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

.casino-cta-bar {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.casino-cta-bar p { color: var(--white); font-weight: 600; font-size: 1rem; flex: 1; min-width: 0; }
.casino-cta-bar .btn--primary { background: var(--white); color: var(--red); border-color: var(--white); flex-shrink: 0; }
.casino-cta-bar .btn--primary:hover { background: #ffe0e0; }

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

.mobile-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-feat {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.mobile-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mobile-icon { font-size: 2.4rem; margin-bottom: 14px; }
.mobile-feat h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.mobile-feat p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

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

/* =========================================================
   PAYMENTS
   ========================================================= */
.payments { background: var(--bg); }

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

.pay-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.pay-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pay-icon { font-size: 2rem; margin-bottom: 10px; }
.pay-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pay-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.55; }

.payments-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text-muted);
}

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

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

.support-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.support-icon { font-size: 2.2rem; }
.support-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.support-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
  min-width: 0;
}
.faq-question:hover { background: #fff0f0; }
.faq-question[aria-expanded="true"] { color: var(--red); }

.faq-arrow {
  font-size: .75rem;
  color: var(--red);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(160deg, #1a0002 0%, #2d0004 60%, #1a0002 100%);
  padding: 80px 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: center;
}

.final-cta-media { min-width: 0; }
.final-cta-media a { display: block; }
.media-card--cta img { max-height: 400px; object-fit: contain; }

.final-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-bonus-reminder {
  background: rgba(234,7,9,.7);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(234,7,9,.4);
}

.final-cta-text {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.final-cta .btn--ghost:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}

.final-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0f0002;
  padding: 56px 0 0;
  color: rgba(255,255,255,.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-tagline { font-size: .88rem; line-height: 1.65; max-width: 280px; }

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bonus-text {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin-bottom: 14px;
  border-left: 3px solid var(--red);
  padding-left: 10px;
}

.footer-cta-col .btn--primary { width: 100%; justify-content: center; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal, .footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* =========================================================
   CATFISH
   ========================================================= */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--red);
  box-shadow: 0 -3px 20px rgba(234,7,9,.5);
  padding: env(safe-area-inset-bottom, 0) 0 0;
}

.catfish-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  max-width: calc(100% - 0px);
  margin: 0 auto;
  flex-wrap: nowrap;
}

.catfish-text {
  flex: 1;
  font-size: .9rem;
  color: var(--white);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catfish-text strong { font-weight: 800; }

.catfish .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  flex-shrink: 0;
  min-height: 38px;
  padding: 8px 18px;
  font-size: .85rem;
}
.catfish .btn--primary:hover { background: #ffe0e0; }

.catfish-close {
  background: rgba(255,255,255,.2);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background .2s;
}
.catfish-close:hover { background: rgba(255,255,255,.35); }

.catfish.hidden { display: none; }

/* =========================================================
   EXIT POPUP
   ========================================================= */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.active { display: flex; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  text-align: center;
  animation: popIn .35s ease;
}
@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.exit-close:hover { background: #ffe0e0; color: var(--red); }

.exit-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.exit-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.exit-bonus {
  background: #fff0f0;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
  line-height: 1.4;
}

.exit-text { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

.exit-popup .btn--primary { width: 100%; margin-bottom: 12px; justify-content: center; }

.exit-decline {
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  display: block;
  margin: 0 auto;
  transition: color .2s;
}
.exit-decline:hover { color: var(--red); }

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

/* 1100px */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta-col { grid-column: 1 / -1; }
  .sport-layout { grid-template-columns: 1fr 320px; gap: 32px; }
}

/* 900px */
@media (max-width: 900px) {
  :root { --header-h: 60px; }

  /* HEADER NAV → hidden, burger shown */
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--red);
    z-index: 999;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-link { padding: 12px 16px; font-size: 1rem; border-radius: 8px; text-align: center; }
  .nav-link--cta { margin-top: 8px; }
  .burger-btn { display: flex; }

  /* GRIDS */
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonuses-layout { grid-template-columns: 1fr; }
  .sport-layout { grid-template-columns: 1fr; }
  .casino-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .final-cta-media { max-width: 480px; margin: 0 auto; }

  .section { padding: 52px 0; }
}

/* 600px */
@media (max-width: 600px) {
  .logo-img { height: 36px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.55rem; }
  .section-subtitle { font-size: .95rem; margin-bottom: 32px; }

  .hero { padding-bottom: 44px; }
  .hero-media { max-height: 280px; }
  .hero-img { max-height: 280px; }
  .hero-content { padding-top: 28px; }
  .hero-bonus-box { padding: 16px 18px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; }

  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .casino-grid { grid-template-columns: 1fr; }
  .mobile-features { grid-template-columns: 1fr; gap: 16px; }
  .payments-grid { grid-template-columns: 1fr; gap: 14px; }
  .support-grid { grid-template-columns: 1fr; gap: 16px; }
  .bonuses-layout { gap: 16px; }

  .bonus-main-card { padding: 24px 20px; }
  .bonus-main-card .btn--primary { align-self: stretch; text-align: center; }

  .how-cta .btn { width: 100%; max-width: 320px; display: flex; }
  .mobile-cta .btn { width: 100%; max-width: 320px; }

  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; justify-content: center; }

  .casino-cta-bar { flex-direction: column; text-align: center; }
  .casino-cta-bar .btn { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta-col { grid-column: auto; }

  .catfish-text { font-size: .78rem; }
  .catfish-inner { gap: 10px; padding: 10px 14px; }

  .exit-popup { padding: 30px 20px; }
  .exit-title { font-size: 1.4rem; }

  .sport-layout { gap: 24px; }
  .sport-intro { font-size: .92rem; }
}

/* 400px */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .btn--xl { font-size: 1rem; padding: 13px 22px; }
  .catfish-text { display: none; }
  .catfish-inner { justify-content: center; }
  .catfish .btn { width: auto; max-width: none; }
}