/* =========================================
   BET25 – LANDING PAGE STYLES
   bet25-login.com
   ========================================= */

/* ------ CUSTOM PROPERTIES ------ */
:root {
  --black: #A61615;
  --red-primary: #A61615;
  --white: #FFFFFF;
  --red-secondary: #DB1B1B;
  --red-dark: #7a0f0f;
  --bg-light: #F5F8FC;
  --bg-section-alt: #F5F8FC;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --text-light: rgba(255,255,255,0.90);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
  --shadow-red: 0 6px 24px rgba(166,22,21,0.35);
  --transition: 0.22s ease;
  --header-h: 72px;
  --container-max: 1240px;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ------ 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: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ------ TYPOGRAPHY ------ */
h1, h2, h3, h4 {
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ------ BUTTONS ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red-secondary) 0%, var(--red-primary) 50%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(166,22,21,0.40), 0 1px 0 rgba(255,255,255,0.15) inset;
  border-color: transparent;
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(166,22,21,0.55), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px rgba(166,22,21,0.30);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.60);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--white {
  background: var(--white);
  color: var(--red-primary);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  font-weight: 900;
}
.btn--white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.btn--white:active { transform: translateY(0); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
}

.btn--lg {
  min-height: 54px;
  padding: 15px 36px;
  font-size: 1.1rem;
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 60%, var(--red-secondary) 100%);
  border-bottom: 2px solid rgba(255,255,255,0.20);
  box-shadow: 0 2px 20px rgba(0,0,0,0.40);
  height: var(--header-h);
}

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

.header__logo { flex-shrink: 0; }
.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.header__nav::-webkit-scrollbar { display: none; }

.header__nav-link {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.header__nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__cta .btn { min-height: 40px; padding: 8px 18px; font-size: 0.9rem; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(180deg, var(--red-dark) 0%, #550a0a 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 24px 20px;
  gap: 4px;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 899;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu__link:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-menu__btn { margin-top: 12px; width: 100%; }

/* ---- SECTION BASE ---- */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-section-alt); }
.section--dark { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%); }
.section--red { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--red-secondary) 100%); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.section__title--light { color: var(--white); }
.section__title--accent { color: var(--red-primary); }

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 48px;
  overflow-wrap: anywhere;
}
.section__lead--light { color: var(--text-light); }

/* ---- HERO ---- */
.hero { position: relative; background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%); }

.hero__media-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  line-height: 0;
}
.hero__img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.hero__media-wrap:hover .hero__img { transform: scale(1.02); }

.hero__content {
  background: linear-gradient(180deg, rgba(100,0,0,0.50) 0%, rgba(90,10,10,0.90) 100%);
  padding: 48px 0 56px;
}

.hero__inner { max-width: 680px; }

.hero__tag {
  display: inline-block;
  background: var(--red-primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero__bonus {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow: 0 2px 20px rgba(219,27,27,0.40);
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  overflow-wrap: anywhere;
}

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

.advantage-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  border: 1px solid #e2e6ec;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.advantage-card__icon { font-size: 2rem; margin-bottom: 12px; }
.advantage-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.advantage-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* ---- BONUS ---- */
.bonus__hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}

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

.bonus__tag {
  display: inline-block;
  background: var(--red-secondary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.bonus__amount {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonus__list {
  margin-bottom: 24px;
}
.bonus__list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow-wrap: anywhere;
}
.bonus__list li:last-child { border-bottom: none; }

.bonus__terms {
  margin-top: 12px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.40);
  overflow-wrap: anywhere;
}

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

.promo-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--border-radius);
  padding: 24px;
  min-width: 0;
  transition: background var(--transition), transform var(--transition);
}
.promo-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.promo-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.promo-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.promo-card__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}
.promo-card .btn--ghost { min-height: 40px; padding: 8px 18px; font-size: 0.88rem; }

/* ---- HOW TO ---- */
.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  counter-reset: steps;
}

.howto__step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #e2e6ec;
  min-width: 0;
}
.howto__step:last-child { border-bottom: none; }

.howto__step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red-primary);
  line-height: 1;
  min-width: 0;
}

.howto__step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.howto__step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.howto__cta { text-align: center; }

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

.sport-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e2e6ec;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
  text-decoration: none;
}
.sport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.sport-card__media {
  overflow: hidden;
  max-height: 200px;
  line-height: 0;
}
.sport-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}
.sport-card:hover .sport-card__img { transform: scale(1.05); }

.sport-card__body { padding: 20px; flex: 1; }
.sport-card__icon { font-size: 1.6rem; margin-bottom: 8px; }
.sport-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.sport-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.sport__cta { text-align: center; }

/* ---- CASINO ---- */
.casino__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.casino__media-wrap {
  display: block;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid #e2e6ec;
  transition: box-shadow var(--transition);
}
.casino__media-wrap:hover { box-shadow: var(--shadow-lg); }
.casino__img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.casino__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  min-width: 0;
}
.casino__feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.casino__feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.casino__feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}
.casino__content-col .btn { margin-top: 8px; }

.providers { border-top: 1px solid #e2e6ec; padding-top: 40px; }
.providers__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
}
.providers__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.providers__item {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-light);
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  min-width: 0;
  overflow-wrap: anywhere;
}
.providers__item:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.mobile-feature {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--border-radius);
  padding: 24px;
  min-width: 0;
  transition: background var(--transition), transform var(--transition);
}
.mobile-feature:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.mobile-feature__icon { font-size: 2rem; margin-bottom: 12px; }
.mobile-feature__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.mobile-feature__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  overflow-wrap: anywhere;
}
.mobile-section__cta { text-align: center; }

/* ---- PAYMENTS ---- */
.payments__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.payment-card {
  background: var(--bg-light);
  border: 1px solid #e2e6ec;
  border-radius: var(--border-radius);
  padding: 22px 18px;
  min-width: 0;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.payment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.payment-card__icon { font-size: 2rem; margin-bottom: 10px; }
.payment-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.payment-card__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.payments__info {
  background: var(--bg-light);
  border-left: 4px solid var(--red-primary);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 18px 20px;
}
.payments__info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

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

.support-card {
  background: var(--bg-light);
  border: 1px solid #e2e6ec;
  border-radius: var(--border-radius);
  padding: 28px 24px;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.support-card__icon { font-size: 2rem; margin-bottom: 12px; }
.support-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.support-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}
.support-card .btn--ghost {
  color: var(--red-primary);
  border-color: var(--red-primary);
  min-height: 40px;
  padding: 8px 18px;
  font-size: 0.88rem;
}
.support-card .btn--ghost:hover { background: var(--red-primary); color: var(--white); }

.responsible-gaming {
  background: linear-gradient(135deg, var(--red-dark) 0%, #6b1010 100%);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--border-radius-lg);
  padding: 32px;
}
.responsible-gaming__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.responsible-gaming__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
  max-width: 720px;
  overflow-wrap: anywhere;
}
.responsible-gaming__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.responsible-gaming__link {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  transition: background var(--transition), color var(--transition);
  overflow-wrap: anywhere;
}
.responsible-gaming__link:hover { background: rgba(255,255,255,0.16); color: var(--white); }

/* ---- FAQ ---- */
.faq__list { max-width: 820px; }

.faq__item {
  border-bottom: 1px solid #e2e6ec;
  overflow: hidden;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq__question:hover { color: var(--red-primary); }

.faq__arrow {
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--red-primary);
  transition: transform var(--transition);
  display: inline-block;
}
.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }

.faq__answer {
  display: none;
  padding: 0 0 20px;
}
.faq__answer.open { display: block; }
.faq__answer p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* ---- FINAL CTA ---- */
.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.final-cta__tag {
  display: inline-block;
  background: rgba(255,255,255,0.20);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.final-cta__bonus {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.final-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

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

.final-cta__disclaimer {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.50);
  overflow-wrap: anywhere;
}

.final-cta__media {
  display: block;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.final-cta__media:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.35); transform: translateY(-4px); }
.final-cta__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(180deg, var(--red-dark) 0%, #550a0a 100%);
  border-top: 2px solid var(--red-secondary);
  padding: 60px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

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

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__pay {
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
}

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

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0;
}
.footer__bottom-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.footer__age {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red-primary);
  color: var(--white);
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
  letter-spacing: 0.02em;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer__bottom-right { flex-shrink: 0; max-width: 320px; min-width: 0; }
.footer__warning {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: right;
  overflow-wrap: anywhere;
}

/* ---- CATFISH ---- */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-secondary) 50%, var(--red-dark) 100%);
  border-top: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.40);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transition: transform 0.3s ease;
}
.catfish.hidden { transform: translateY(110%); }

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

.catfish__text {
  flex: 1;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.catfish__text strong { color: var(--white); }

.catfish__btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.catfish__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.catfish__close:hover { background: rgba(255,255,255,0.18); color: var(--white); }

/* ---- EXIT POPUP ---- */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.active { display: flex; }

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

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, var(--red-dark) 0%, #6b1010 100%);
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.60);
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.exit-popup__close:hover { background: rgba(255,255,255,0.18); color: var(--white); }

.exit-popup__badge {
  display: inline-block;
  background: var(--red-secondary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.exit-popup__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--white);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.exit-popup__bonus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(219,27,27,0.50);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.exit-popup__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

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

.exit-popup__disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  overflow-wrap: anywhere;
}

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

/* TABLET */
@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__main { grid-template-columns: 1fr; }
  .casino__media-wrap { max-width: 480px; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__media { max-width: 460px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; }
  .footer__bottom-right { max-width: 100%; }
  .footer__warning { text-align: left; }
}

/* MOBILE / TABLET transition */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .sport__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

  .section { padding: 56px 0; }
  .section__lead { margin-bottom: 32px; }

  .container { padding: 0 16px; }

  /* Header */
  .header__logo-img { height: 36px; }

  /* Hero */
  .hero__media-wrap { max-height: 260px; }
  .hero__img { max-height: 260px; }
  .hero__content { padding: 32px 0 40px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }

  /* Advantages */
  .advantages__grid { grid-template-columns: 1fr; gap: 16px; }

  /* Bonus */
  .bonus__hero-card {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 20px;
  }
  .promo__grid { grid-template-columns: 1fr; }

  /* How to */
  .howto__step { grid-template-columns: 56px minmax(0, 1fr); gap: 16px; }
  .howto__step-num { font-size: 2.2rem; }

  /* Sport */
  .sport__grid { grid-template-columns: 1fr; }

  /* Casino */
  .casino__main { grid-template-columns: 1fr; gap: 28px; }

  /* Mobile section */
  .mobile-features { grid-template-columns: 1fr; }

  /* Payments */
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Support */
  .support__cards { grid-template-columns: 1fr; }
  .responsible-gaming { padding: 20px 16px; }
  .responsible-gaming__links { flex-direction: column; }

  /* Final CTA */
  .final-cta__inner { grid-template-columns: 1fr; gap: 24px; }
  .final-cta__btns { flex-direction: column; }
  .final-cta__btns .btn { width: 100%; }
  .final-cta__media { max-width: 100%; }

  /* Footer */
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .footer__bottom { flex-direction: column; gap: 14px; }
  .footer__warning { text-align: left; }

  /* Catfish */
  .catfish__text { font-size: 0.78rem; }
  .catfish__btn { padding: 8px 14px; font-size: 0.82rem; }

  /* Exit popup */
  .exit-popup__box { padding: 36px 20px; }

  /* Howto CTA */
  .howto__cta .btn { width: 100%; }
  .sport__cta .btn { width: 100%; }
  .mobile-section__cta .btn { width: 100%; }

  /* Buttons in CTA sections full width mobile */
  .hero__btns .btn--primary,
  .hero__btns .btn--ghost,
  .final-cta__btns .btn--white,
  .final-cta__btns .btn--outline-white { min-height: 52px; }
}

@media (max-width: 360px) {
  .payments__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
}
.b25-insight {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fafbfd 0%, #f1f3f7 100%);
  color: #1f2024;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
}

.b25-insight__container {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.b25-insight__header {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 1rem 0 1.5rem;
  border-bottom: 3px double #c9132a;
}

.b25-insight__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9132a;
  background: rgba(201, 19, 42, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.b25-insight__title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.55rem, 4.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #16181d;
  margin: 0 0 1.1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.b25-insight__intro {
  font-size: 1rem;
  color: #4a4d57;
  margin: 0;
  text-align: left;
}

.b25-insight__block {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  margin: 0 0 1.5rem;
  box-shadow: 0 2px 14px rgba(20, 22, 30, 0.05);
  border-left: 4px solid #c9132a;
}

.b25-insight__block:nth-child(even) {
  background: #1c1f26;
  color: #e9e9ec;
  border-left-color: #f0c14b;
}

.b25-insight__block:nth-child(even) .b25-insight__h3,
.b25-insight__block:nth-child(even) .b25-insight__h4 {
  color: #f5f5f7;
}

.b25-insight__block:nth-child(even) p,
.b25-insight__block:nth-child(even) li {
  color: #cccfd6;
}

.b25-insight__block:nth-child(even) strong {
  color: #f0c14b;
}

.b25-insight__block:nth-child(even) em {
  color: #ffffff;
  font-style: italic;
}

.b25-insight__h3 {
  font-family: 'Georgia', serif;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
  color: #16181d;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 19, 42, 0.18);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.b25-insight__h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #c9132a;
  margin: 1.25rem 0 0.55rem;
  letter-spacing: 0.005em;
}

.b25-insight__block:nth-child(even) .b25-insight__h4 {
  color: #f0c14b;
}

.b25-insight__block p {
  font-size: 0.97rem;
  margin: 0 0 1rem;
  color: #3a3d46;
}

.b25-insight__block p:last-child {
  margin-bottom: 0;
}

.b25-insight__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.b25-insight__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.96rem;
  color: #3a3d46;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
}

.b25-insight__block:nth-child(even) .b25-insight__list li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.b25-insight__list li:last-child {
  border-bottom: none;
}

.b25-insight__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.65rem;
  height: 0.65rem;
  background: #c9132a;
  transform: rotate(45deg);
  border-radius: 1px;
}

.b25-insight__block:nth-child(even) .b25-insight__list li::before {
  background: #f0c14b;
}

.b25-insight__list--two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.b25-insight__table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.b25-insight__block:nth-child(even) .b25-insight__table-wrap {
  border-color: rgba(255, 255, 255, 0.1);
}

.b25-insight__table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #ffffff;
}

.b25-insight__block:nth-child(even) .b25-insight__table {
  background: #14161c;
}

.b25-insight__table thead {
  background: linear-gradient(135deg, #c9132a 0%, #8a0e1f 100%);
  color: #fff;
}

.b25-insight__table th {
  padding: 0.75rem 0.85rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.b25-insight__table td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: #2c2e36;
  vertical-align: middle;
}

.b25-insight__block:nth-child(even) .b25-insight__table td {
  color: #d4d6dc;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.b25-insight__table tbody tr:nth-child(even) td {
  background: #faf6f7;
}

.b25-insight__block:nth-child(even) .b25-insight__table tbody tr:nth-child(even) td {
  background: #1a1c23;
}

.b25-insight__table tbody tr:last-child td {
  border-bottom: none;
}

.b25-insight__table tbody tr:hover td {
  background: rgba(201, 19, 42, 0.06);
}

.b25-insight__block:nth-child(even) .b25-insight__table tbody tr:hover td {
  background: rgba(240, 193, 75, 0.08);
}

.b25-insight__block strong {
  color: #c9132a;
  font-weight: 800;
}

.b25-insight__block em {
  font-style: italic;
  color: #16181d;
}

@media (min-width: 600px) {
  .b25-insight {
    padding: 5rem 0;
  }

  .b25-insight__container {
    padding: 0 1.5rem;
  }

  .b25-insight__block {
    padding: 2rem 1.75rem;
  }

  .b25-insight__list--two-col {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .b25-insight__list--two-col li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
  }
}

@media (min-width: 900px) {
  .b25-insight {
    padding: 6rem 0;
  }

  .b25-insight__header {
    padding: 1.5rem 0 2rem;
    margin-bottom: 3.5rem;
  }

  .b25-insight__intro {
    font-size: 1.08rem;
    text-align: center;
  }

  .b25-insight__block {
    padding: 2.4rem 2.4rem;
    margin-bottom: 1.75rem;
    border-left-width: 5px;
  }

  .b25-insight__h3 {
    font-size: 1.55rem;
  }

  .b25-insight__h4 {
    font-size: 1.12rem;
  }

  .b25-insight__block p,
  .b25-insight__list li {
    font-size: 1rem;
  }

  .b25-insight__table {
    font-size: 0.95rem;
  }

  .b25-insight__table th {
    padding: 0.95rem 1.1rem;
  }

  .b25-insight__table td {
    padding: 0.85rem 1.1rem;
  }
}

@media (min-width: 1200px) {
  .b25-insight__block {
    padding: 2.6rem 3rem;
  }

  .b25-insight__h3 {
    font-size: 1.65rem;
  }
}
