/* =============================================
   SUPERBET CASINO – 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: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #111416;
  background: #ffffff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* === CSS VARIABLES === */
:root {
  --red: #C50003;
  --red-dark: #9e0002;
  --red-light: #e8000380;
  --charcoal: #111416;
  --silver: #DEE1E4;
  --bg: #ffffff;
  --bg-dark: #ffffff;
  --bg-mid: #ffffff;
  --white: #fff;
  --text-muted: #666c74;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-btn: 0 6px 24px rgba(197,0,3,0.38);
  --transition: 0.22s ease;
  --container: 1200px;
  --header-h: 68px;
}

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; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
h5 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn--primary {
  background: linear-gradient(135deg, #e00003 0%, var(--red) 60%, #9e0002 100%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(197,0,3,0.5);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 12px rgba(197,0,3,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 3px 12px rgba(197,0,3,0.12);
}

.btn--ghost:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197,0,3,0.35);
}

.btn--ghost:active {
  transform: translateY(0) scale(0.98);
}

/* === SECTIONS === */
.section {
  padding: 72px 0;
  background: #ffffff;
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section__title {
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* All light-variant heads keep dark text on white */
.section__head--light .section__title { color: var(--charcoal); }
.section__head--light .section__sub { color: var(--text-muted); }

/* Force every named section to white */
.section.bonuses,
.section.sports,
.section.mobile,
.section.casino,
.section.advantages,
.section.howto,
.section.payments,
.section.support,
.section.faq {
  background: #ffffff;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #ffffff;
  border-bottom: 3px solid var(--red);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.header__logo { flex-shrink: 0; display: block; }

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

.logo-img--footer {
  height: 48px;
  max-width: 180px;
}

.header__nav { flex: 1; min-width: 0; }

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.nav__list::-webkit-scrollbar { display: none; }

.nav__link {
  display: inline-block;
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  min-width: 0;
}

.nav__link:hover { color: var(--red); background: rgba(197,0,3,0.06); }

.nav__link--cta {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  box-shadow: 0 3px 14px rgba(197,0,3,0.35);
}

.nav__link--cta:hover {
  background: var(--red-dark);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* === HERO === */
.hero { padding: 0; background: #ffffff; }

.hero__image-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  background: #f5f5f5;
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__content {
  background: #ffffff;
  padding: 56px 0 64px;
  position: relative;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.hero__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero__bonus-text {
  color: var(--charcoal);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero__highlight {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 12px;
}

.hero__percent {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--red);
  display: inline;
}

.hero__amount {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--charcoal);
  display: inline;
}

.hero__wager {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.hero__wager strong { color: var(--charcoal); }

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

.hero__ctas .btn { min-width: 220px; font-size: 1.2rem; padding: 16px 36px; min-height: 56px; }

/* === ADVANTAGES === */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.adv-card {
  background: #ffffff;
  border: 2px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.adv-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(197,0,3,0.10);
}

.adv-card__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.adv-card__title {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.adv-card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* === BONUSES === */
.bonus-hero-card {
  background: #ffffff;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(197,0,3,0.12);
}

.bonus-hero-card__label {
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 8px 24px;
  display: inline-block;
}

.bonus-hero-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  align-items: center;
  gap: 0;
  padding: 32px 36px 36px;
}

.bonus-hero-card__text h3 {
  color: var(--charcoal);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bonus-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-big span { color: var(--red); }

.bonus-wager { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; }
.bonus-wager strong { color: var(--charcoal); }

.bonus-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-features li { color: var(--text-muted); font-size: 0.95rem; }

.bonus-hero-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-hero-card__media a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
}

.bonus-hero-card__media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

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

.promo-card {
  background: #ffffff;
  border: 2px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197,0,3,0.10);
}

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

.promo-card h4 {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.promo-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }

/* === HOW TO START === */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--red);
  margin-left: 32px;
  padding-left: 0;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0 28px 32px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 36px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--red);
}

.step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 70px;
  flex-shrink: 0;
}

.step__title { color: var(--charcoal); margin-bottom: 8px; }
.step__text { color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; }

.howto__cta { text-align: center; }

/* === SPORTS === */
.sports-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 48px;
  align-items: start;
}

.sports-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.sports-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.sports-tags span {
  background: rgba(197,0,3,0.07);
  border: 1px solid rgba(197,0,3,0.25);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

.sports-media { min-width: 0; }

/* === CASINO === */
.casino-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.casino-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.casino-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.cat-pill {
  display: inline-block;
  background: #ffffff;
  border: 2px solid var(--silver);
  color: var(--charcoal);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.cat-pill:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* === MOBILE SECTION === */
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mobile-feature {
  background: #ffffff;
  border: 2px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.mobile-feature:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197,0,3,0.10);
}

.mobile-feature__icon { font-size: 2.2rem; margin-bottom: 12px; }

.mobile-feature h4 {
  color: var(--charcoal);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.mobile-feature p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

.mobile__cta { text-align: center; margin-top: 40px; }

/* === PAYMENTS === */
.pay-table-wrap {
  overflow-x: auto;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--silver);
  margin-bottom: 32px;
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pay-table th, .pay-table td {
  padding: 14px 18px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.pay-table th {
  background: var(--charcoal);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pay-table th:first-child { width: 36%; }
.pay-table th:nth-child(2), .pay-table th:nth-child(3) { width: 16%; }
.pay-table th:nth-child(4) { width: 16%; }
.pay-table th:nth-child(5) { width: 12%; }

.pay-table td {
  background: #ffffff;
  color: var(--charcoal);
  border-bottom: 1px solid var(--silver);
  font-size: 0.95rem;
}

.pay-table tr:last-child td { border-bottom: none; }
.pay-table tr:hover td { background: rgba(197,0,3,0.04); }

.payments-note {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.payments-note p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

/* === SUPPORT === */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  background: #ffffff;
  border: 2px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.support-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197,0,3,0.10);
}

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

.support-card h4 {
  color: var(--charcoal);
  font-size: 1.25rem;
}

.support-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; flex: 1; }

/* === FAQ === */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 2px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--red); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
  border: none;
}

.faq-item__q:hover { color: var(--red); }
.faq-item__q[aria-expanded="true"] { color: var(--red); }

.faq-item__arrow {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--red);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item__q[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item__a.open {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-item__a p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* === FINAL CTA === */
.final-cta {
  background: #ffffff;
  border-top: 3px solid var(--red);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.final-cta__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--silver);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.final-cta__media img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.final-cta__media:hover img { transform: scale(1.03); }

.final-cta__content h2 {
  color: var(--charcoal);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.final-cta__bonus {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.final-cta__highlight {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 10px;
}

.final-cta__highlight strong { color: var(--red); }

.final-cta__note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.final-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* === MEDIA CARD (shared) === */
.mediaCard {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--silver);
  background: #ffffff;
}

.mediaCard img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.mediaCard:hover img { transform: scale(1.03); }

/* === FOOTER === */
.site-footer {
  background: #ffffff;
  border-top: 3px solid var(--silver);
  padding: 56px 0 32px;
}

.footer__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand .footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 360px;
}

.footer__nav h5 { color: var(--charcoal); margin-bottom: 16px; }

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

.footer__nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--red); }

.footer__cta-col h5 { color: var(--charcoal); margin-bottom: 12px; }

.footer__cta-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__cta-col strong { color: var(--charcoal); }

.footer__divider {
  height: 1px;
  background: var(--silver);
  margin-bottom: 28px;
}

.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer__copy a { color: var(--red); }

/* === EXIT POPUP === */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.exit-popup.show { display: flex; align-items: center; justify-content: center; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(197,0,3,0.2);
}

.exit-popup__badge {
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}

.exit-popup__title {
  color: var(--charcoal);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.exit-popup__bonus {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.exit-popup__highlight {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.exit-popup__highlight span { color: var(--red); }

.exit-popup__sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 28px; }

.exit-popup__btn { width: 100%; font-size: 1.15rem; padding: 16px; }

.exit-popup__close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.6rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  padding: 4px;
}

.exit-popup__close:hover { color: var(--red); }

/* === CATFISH === */
.catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 888;
  background: #ffffff;
  border-top: 3px solid var(--red);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.catfish.hidden { transform: translateY(110%); }

.catfish__inner {
  max-width: calc(var(--container) - 48px);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.catfish__text {
  color: var(--charcoal);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 200px);
  min-width: 0;
}

.catfish__text strong { color: var(--red); }

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

.catfish__close {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color var(--transition);
}

.catfish__close:hover { color: var(--red); }

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

@media (max-width: 1100px) {
  .adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sports-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .sports-media { order: -1; }
  .sports-media .mediaCard img { max-height: 260px; }
  .casino-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .casino-media .mediaCard img { max-height: 260px; }
  .mobile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-hero-card__body { grid-template-columns: minmax(0, 1fr); }
  .bonus-hero-card__media { display: none; }
  .final-cta__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; text-align: center; }
  .final-cta__btns { justify-content: center; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

  .section { padding: 52px 0; }

  .burger { display: flex; }
  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #ffffff;
    border-bottom: 3px solid var(--red);
    padding: 12px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .header__nav.open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow: visible;
    padding: 0 16px;
  }
  .nav__link { padding: 12px 16px; text-align: center; border-radius: 8px; }
  .nav__link--cta { margin: 8px 0 4px; }

  .adv-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .promo-grid { grid-template-columns: minmax(0, 1fr); }
  .mobile-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .support-grid { grid-template-columns: minmax(0, 1fr); }

  .steps { margin-left: 16px; }
  .step { padding: 20px 0 20px 24px; }
  .step__num { font-size: 2.8rem; min-width: 56px; }

  .hero__image-wrap { max-height: 280px; }
  .hero__image-wrap img { max-height: 280px; }
  .hero__ctas .btn { min-width: unset; width: 100%; }
  .hero__ctas { flex-direction: column; align-items: center; gap: 12px; }

  .catfish__text { font-size: 0.82rem; max-width: calc(100% - 160px); }
  .catfish__btn { font-size: 0.85rem; padding: 8px 16px; }

  .footer__top { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .footer__brand .footer__desc { max-width: 100%; }

  .pay-table th, .pay-table td { padding: 10px 12px; font-size: 0.85rem; }

  .final-cta__media { display: none; }
  .final-cta__inner { grid-template-columns: minmax(0, 1fr); }
  .final-cta__btns { flex-direction: column; }
  .final-cta__btns .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }

  .hero__image-wrap { max-height: 200px; }
  .hero__image-wrap img { max-height: 200px; }
  .hero__content { padding: 36px 0 44px; }
  .hero__bonus-text { font-size: 2.2rem; }
  .hero__percent, .hero__amount { font-size: 3rem; }

  .section { padding: 40px 0; }
  .section__head { margin-bottom: 32px; }

  .bonus-big { font-size: 2.2rem; }
  .bonus-hero-card__body { padding: 20px 20px 24px; }

  .step { flex-direction: column; gap: 8px; }
  .step__num { font-size: 2.4rem; }

  .pay-table th:nth-child(4),
  .pay-table td:nth-child(4) { display: none; }

  .faq-item__q { padding: 14px 16px; font-size: 0.92rem; }

  .exit-popup__box { padding: 28px 20px; }
  .exit-popup__title { font-size: 1.4rem; }
  .exit-popup__highlight { font-size: 2.4rem; }

  .catfish__inner { gap: 8px; }
  .catfish__text { font-size: 0.78rem; max-width: calc(100% - 130px); }

  .sports-tags span { font-size: 0.82rem; padding: 5px 10px; }
}

@media (max-width: 360px) {
  .hero__percent, .hero__amount { font-size: 2.5rem; }
  .btn { font-size: 0.95rem; padding: 11px 18px; }
  .catfish__btn { padding: 7px 12px; font-size: 0.8rem; }
}
.sbc-deep {
display: block;
padding: 4rem 1rem;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
color: #111416;
font-family: 'Barlow', sans-serif;
line-height: 1.7;
border-top: 4px solid #C50003;
border-bottom: 1px solid #DEE1E4;
}
.sbc-deep * {
box-sizing: border-box;
}
.sbc-deep__header {
max-width: 56rem;
margin: 0 auto 2.5rem;
text-align: center;
padding: 0 0.5rem;
}
.sbc-deep__title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(1.75rem, 4.5vw, 2.6rem);
font-weight: 900;
line-height: 1.15;
text-transform: uppercase;
color: #111416;
margin: 0 0 1rem;
letter-spacing: 0.01em;
}
.sbc-deep__title::after {
content: '';
display: block;
width: 4rem;
height: 4px;
background: #C50003;
margin: 0.85rem auto 0;
border-radius: 2px;
}
.sbc-deep__lede {
font-size: 1.05rem;
color: #444a52;
margin: 0;
line-height: 1.7;
}
.sbc-deep__lede strong {
color: #C50003;
font-weight: 700;
}
.sbc-deep article {
max-width: 60rem;
margin: 0 auto 2.25rem;
padding: 1.75rem 1.25rem;
background: #ffffff;
border: 1px solid #DEE1E4;
border-radius: 12px;
position: relative;
transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.sbc-deep article:hover {
border-color: rgba(197, 0, 3, 0.4);
box-shadow: 0 8px 28px rgba(197, 0, 3, 0.07);
transform: translateY(-2px);
}
.sbc-deep article::before {
content: '';
position: absolute;
top: 1.75rem;
left: 0;
width: 3px;
height: 2.4rem;
background: #C50003;
border-radius: 0 3px 3px 0;
}
.sbc-deep__h3 {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(1.3rem, 3.2vw, 1.7rem);
font-weight: 900;
line-height: 1.2;
color: #111416;
margin: 0 0 1rem;
text-transform: uppercase;
letter-spacing: 0.02em;
padding-left: 0.25rem;
}
.sbc-deep__h3 strong {
color: #C50003;
font-weight: 900;
}
.sbc-deep__h4 {
font-family: 'Barlow Condensed', sans-serif;
font-size: 1.15rem;
font-weight: 700;
color: #C50003;
margin: 1.5rem 0 0.65rem;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.sbc-deep__h4:first-of-type {
margin-top: 1rem;
}
.sbc-deep p {
font-size: 0.98rem;
color: #2a2e33;
margin: 0 0 1rem;
line-height: 1.75;
}
.sbc-deep p:last-child {
margin-bottom: 0;
}
.sbc-deep p strong {
color: #111416;
font-weight: 700;
background: linear-gradient(180deg, transparent 65%, rgba(197, 0, 3, 0.12) 65%);
padding: 0 2px;
}
.sbc-deep p em {
color: #C50003;
font-style: normal;
font-weight: 600;
}
.sbc-deep__list {
list-style: none;
padding: 0;
margin: 0 0 1.25rem;
display: flex;
flex-direction: column;
gap: 0.7rem;
}
.sbc-deep__list li {
position: relative;
padding: 0.7rem 0.85rem 0.7rem 2.2rem;
background: #fafafa;
border-left: 3px solid #C50003;
border-radius: 0 6px 6px 0;
font-size: 0.96rem;
color: #2a2e33;
line-height: 1.65;
}
.sbc-deep__list li::before {
content: '';
position: absolute;
left: 0.85rem;
top: 1.05rem;
width: 0.5rem;
height: 0.5rem;
background: #C50003;
border-radius: 50%;
box-shadow: 0 0 0 3px rgba(197, 0, 3, 0.15);
}
.sbc-deep__list li strong {
color: #111416;
font-weight: 700;
}
.sbc-deep__story {
background: #ffffff;
}
.sbc-deep__regulation {
background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}
.sbc-deep__games {
background: #ffffff;
}
.sbc-deep__sportsbook {
background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}
.sbc-deep__bonus-strategy {
background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}
.sbc-deep__payments-deep {
background: #ffffff;
}
.sbc-deep__responsible {
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
border-color: rgba(197, 0, 3, 0.3);
}
.sbc-deep__responsible::before {
height: 3.6rem;
}
.sbc-deep__loyalty {
background: #ffffff;
}
.sbc-deep__verdict {
background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}
.sbc-deep__aside {
max-width: 60rem;
margin: 2.5rem auto 0;
padding: 1.75rem 1.5rem;
background: #111416;
color: #ffffff;
border-radius: 12px;
position: relative;
overflow: hidden;
}
.sbc-deep__aside::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #C50003 0%, #e00003 50%, #C50003 100%);
}
.sbc-deep__aside::after {
content: '!';
position: absolute;
top: 1.5rem;
right: 1.5rem;
width: 2rem;
height: 2rem;
background: #C50003;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 900;
font-size: 1.2rem;
opacity: 0.85;
}
.sbc-deep__aside-title {
font-family: 'Barlow Condensed', sans-serif;
font-size: 1.2rem;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #ffffff;
margin: 0 0 0.85rem;
padding-right: 2.5rem;
}
.sbc-deep__aside p {
color: #d8dadd;
font-size: 0.97rem;
line-height: 1.75;
margin: 0;
}
.sbc-deep__aside p strong {
color: #ffffff;
background: none;
padding: 0;
}
@media (min-width: 768px) {
.sbc-deep {
padding: 5rem 1.5rem;
}
.sbc-deep article {
padding: 2.25rem 2rem;
margin-bottom: 2.5rem;
}
.sbc-deep article::before {
top: 2.25rem;
width: 4px;
height: 2.8rem;
}
.sbc-deep__h3 {
padding-left: 0.5rem;
}
.sbc-deep__list li {
padding: 0.85rem 1rem 0.85rem 2.5rem;
font-size: 1rem;
}
.sbc-deep__list li::before {
left: 1rem;
top: 1.2rem;
}
.sbc-deep__aside {
padding: 2.25rem 2.25rem;
}
}
@media (min-width: 1024px) {
.sbc-deep {
padding: 6rem 2rem;
}
.sbc-deep__header {
margin-bottom: 3.5rem;
}
.sbc-deep__lede {
font-size: 1.15rem;
}
.sbc-deep article {
padding: 2.5rem 2.5rem;
}
.sbc-deep p {
font-size: 1rem;
}
.sbc-deep__h4 {
font-size: 1.2rem;
}
}
@media (prefers-reduced-motion: reduce) {
.sbc-deep article {
transition: none;
}
.sbc-deep article:hover {
transform: none;
}
}
/* === SUPERBET CASINO – ODDS & STRATEGY BLOCK === */
.superbet-casino-odds {
  display: block;
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  color: #111416;
  font-family: 'Barlow', sans-serif;
  line-height: 1.7;
  border-top: 1px solid #DEE1E4;
  border-bottom: 4px solid #C50003;
}

.superbet-casino-odds *,
.superbet-casino-odds *::before,
.superbet-casino-odds *::after {
  box-sizing: border-box;
}

.superbet-casino-odds__container {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.superbet-casino-odds__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: #111416;
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0 0.25rem;
}

.superbet-casino-odds__title::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4px;
  background: #C50003;
  margin: 0.85rem auto 0;
  border-radius: 2px;
}

.superbet-casino-odds__lede {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 0 0.5rem;
}

.superbet-casino-odds__lede p {
  font-size: 1.05rem;
  color: #444a52;
  margin: 0;
  line-height: 1.7;
}

.superbet-casino-odds__lede strong {
  color: #C50003;
  font-weight: 700;
}

.superbet-casino-odds article {
  margin: 0 0 2rem;
  padding: 1.6rem 1.2rem 1.6rem 1.4rem;
  background: #ffffff;
  border: 1px solid #DEE1E4;
  border-left: 4px solid #C50003;
  border-radius: 0 12px 12px 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.superbet-casino-odds article:hover {
  border-color: rgba(197, 0, 3, 0.45);
  border-left-color: #C50003;
  box-shadow: 0 8px 28px rgba(197, 0, 3, 0.07);
  transform: translateY(-2px);
}

.superbet-casino-odds__h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111416;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.superbet-casino-odds__h3 strong {
  color: #C50003;
}

.superbet-casino-odds__h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #C50003;
  margin: 1.4rem 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.superbet-casino-odds__h4:first-of-type {
  margin-top: 0.9rem;
}

.superbet-casino-odds p {
  font-size: 0.97rem;
  color: #2a2e33;
  margin: 0 0 1rem;
  line-height: 1.75;
}

.superbet-casino-odds p:last-child {
  margin-bottom: 0;
}

.superbet-casino-odds p strong {
  color: #111416;
  font-weight: 700;
}

.superbet-casino-odds p em {
  color: #C50003;
  font-style: normal;
  font-weight: 600;
}

.superbet-casino-odds__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.superbet-casino-odds__list li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 2.1rem;
  background: #fafafa;
  border-left: 3px solid #C50003;
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: #2a2e33;
  line-height: 1.65;
}

.superbet-casino-odds__list li::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 1.05rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #C50003;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(197, 0, 3, 0.15);
}

.superbet-casino-odds__list li strong {
  color: #111416;
  font-weight: 700;
}

.superbet-casino-odds__aside {
  margin: 2.25rem 0 0;
  padding: 1.7rem 1.4rem;
  background: #111416;
  color: #ffffff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.superbet-casino-odds__aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C50003 0%, #e00003 50%, #C50003 100%);
}

.superbet-casino-odds__aside-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 0.85rem;
}

.superbet-casino-odds__aside p {
  color: #d8dadd;
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.superbet-casino-odds__aside p strong {
  color: #ffffff;
}

.superbet-casino-odds__cta {
  display: flex;
  justify-content: flex-start;
}

.superbet-casino-odds__cta-link {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background: #C50003;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.superbet-casino-odds__cta-link:hover {
  background: #9e0002;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 0, 3, 0.35);
}

.superbet-casino-odds__cta-link:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .superbet-casino-odds {
    padding: 5rem 1.5rem;
  }

  .superbet-casino-odds article {
    padding: 2rem 1.8rem 2rem 2rem;
    margin-bottom: 2.25rem;
  }

  .superbet-casino-odds__list li {
    padding: 0.85rem 1rem 0.85rem 2.4rem;
    font-size: 0.98rem;
  }

  .superbet-casino-odds__list li::before {
    left: 1rem;
    top: 1.2rem;
  }

  .superbet-casino-odds__aside {
    padding: 2.1rem 2rem;
  }
}

@media (min-width: 1024px) {
  .superbet-casino-odds {
    padding: 6rem 2rem;
  }

  .superbet-casino-odds__lede p {
    font-size: 1.13rem;
  }

  .superbet-casino-odds article {
    padding: 2.4rem 2.3rem 2.4rem 2.4rem;
  }

  .superbet-casino-odds p {
    font-size: 1rem;
  }

  .superbet-casino-odds__h4 {
    font-size: 1.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .superbet-casino-odds article,
  .superbet-casino-odds__cta-link {
    transition: none;
  }

  .superbet-casino-odds article:hover,
  .superbet-casino-odds__cta-link:hover {
    transform: none;
  }
}