/* ==============================
   UNIBET NL – STYLES.CSS
   ============================== */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* VARIABLES */
:root {
  --yellow: #F1CC0D;
  --black: #111111;
  --green: #147B45;
  --gray: #EEEEEE;
  --white: #FFFFFF;
  --dark-surface: #1a1a1a;
  --dark-card: #242424;
  --text-dark: #111111;
  --text-light: #EEEEEE;
  --text-muted: #888888;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-btn: 0 6px 24px rgba(241,204,13,0.45);
  --shadow-btn-hover: 0 10px 32px rgba(241,204,13,0.65);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
  --header-h: 72px;
}

/* 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;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}
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 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}
p { overflow-wrap: anywhere; word-break: break-word; }

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

/* SECTIONS */
.section { padding: 80px 0; }
.section--light { background: var(--white); }
.section--dark { background: var(--black); }
.section--alt { background: var(--gray); }
.section--accent { background: linear-gradient(135deg, #0d1f14 0%, #1a3d24 100%); }
.section--cta {
  background: linear-gradient(135deg, var(--black) 0%, #1c1c1c 100%);
  padding: 100px 0;
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section__title--light { color: var(--yellow); }
.section__lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #444;
  max-width: 800px;
  margin-bottom: 48px;
}
.section__lead--light { color: var(--gray); }
.section__disclaimer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
}
.mt-lg { margin-top: 48px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-btn-hover);
  background: #ffe033;
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(241,204,13,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn--ghost-light {
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--black);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  height: var(--header-h);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.header__nav::-webkit-scrollbar { display: none; }
.nav-link {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover { background: var(--yellow); color: var(--black); }
.header__cta { flex-shrink: 0; padding: 10px 20px; font-size: 1rem; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 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); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-surface);
  padding: 20px;
  gap: 8px;
  border-bottom: 3px solid var(--yellow);
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu__link:hover { background: var(--yellow); color: var(--black); }
.mobile-menu__cta { width: 100%; margin-top: 8px; }

/* HERO */
.hero { background: var(--black); }
.hero__media-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  background: #0d0d0d;
}
.hero__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__content {
  background: linear-gradient(180deg, var(--black) 0%, #1a1a1a 100%);
  padding: 48px 0 60px;
  text-align: center;
}
.hero__inner { max-width: 900px; }
.hero__badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__bonus {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 32px;
  line-height: 1.05;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__ctas .btn { min-width: 200px; font-size: 1.2rem; padding: 14px 32px; }
.hero__disclaimer {
  font-size: 0.8rem;
  color: #777;
  margin-top: 16px;
}

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

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.card--icon { text-align: center; }
.card--dark {
  background: var(--dark-card);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.card__title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: inherit;
}
.card--dark .card__title { color: var(--yellow); }
.card__text { font-size: 0.95rem; color: #555; line-height: 1.6; }
.card--dark .card__text { color: #ccc; }

/* STATS */
.stats-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  min-width: 0;
}
.stat__num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-top: 6px;
  max-width: 180px;
}

/* MEDIA CARD */
.media-card {
  display: flex;
  gap: 40px;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(241,204,13,0.2);
  transition: box-shadow var(--transition);
  cursor: pointer;
  min-width: 0;
}
.media-card:hover { box-shadow: 0 8px 40px rgba(241,204,13,0.15); }
.media-card__img-wrap {
  flex: 0 0 45%;
  overflow: hidden;
  max-height: 400px;
}
.media-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.media-card:hover .media-card__img { transform: scale(1.03); }
.media-card__body {
  flex: 1;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.media-card__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.media-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--yellow);
  margin-bottom: 16px;
}
.media-card__text { font-size: 0.95rem; color: #ccc; margin-bottom: 12px; line-height: 1.7; }
.media-card__list { margin-bottom: 24px; }
.media-card__list li { font-size: 0.95rem; color: #ddd; padding: 4px 0; }

/* CONTENT BLOCK (MEDIA LEFT/RIGHT) */
.content-block { margin-top: 0; }
.media {
  display: flex;
  gap: 48px;
  align-items: center;
  min-width: 0;
}
.media--left { flex-direction: row; }
.media--right { flex-direction: row-reverse; }
.media__img-wrap {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(0,0,0,0.1);
  max-height: 380px;
}
.media--dark .media__img-wrap { border-color: rgba(241,204,13,0.2); }
.media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.media__img-wrap:hover .media__img { transform: scale(1.04); }
.media__body { flex: 1; min-width: 0; }
.media__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.media__title--light { color: var(--yellow); }
.media__text { font-size: 0.95rem; color: #444; margin-bottom: 12px; line-height: 1.7; }
.media__text--light { color: #ccc; }
.media__body .btn { margin-top: 8px; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(241,204,13,0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  min-width: 0;
  transition: background var(--transition);
}
.step:hover { background: rgba(255,255,255,0.12); }
.step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step__title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step__text { font-size: 0.95rem; color: #bbb; line-height: 1.7; }
.cta-center { text-align: center; }
.cta-center .btn { font-size: 1.2rem; padding: 16px 40px; }

/* PAYMENTS GRID */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.payment-item {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.payment-item:hover { border-color: var(--green); transform: translateY(-3px); }
.payment-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.payment-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; display: block; color: var(--black); margin-bottom: 4px; }
.payment-desc { font-size: 0.8rem; color: var(--text-muted); }

/* INFO BOX */
.info-box {
  background: rgba(20, 123, 69, 0.08);
  border: 1px solid rgba(20,123,69,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.info-box p { font-size: 0.95rem; color: #333; line-height: 1.6; }
.info-box--green { background: rgba(20,123,69,0.05); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] { background: #f9f9f9; }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p { font-size: 0.95rem; color: #555; line-height: 1.7; }

/* FINAL CTA */
.final-cta-media {
  display: block;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  cursor: pointer;
}
.final-cta-media__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.final-cta-media:hover .final-cta-media__img { transform: scale(1.02); }
.final-cta__inner { max-width: 760px; margin: 0 auto; }
.final-cta__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.final-cta__title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.final-cta__text {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-cta__btns .btn { font-size: 1.2rem; padding: 16px 40px; }
.final-cta__disclaimer { font-size: 0.78rem; color: #666; }

/* FOOTER */
.footer {
  background: #0a0a0a;
  border-top: 3px solid var(--yellow);
  padding: 60px 0 40px;
}
.footer__inner { display: flex; flex-direction: column; gap: 32px; }
.footer__top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer__logo { flex-shrink: 0; }
.footer__logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__link {
  font-size: 0.9rem;
  color: #aaa;
  transition: color var(--transition);
  white-space: nowrap;
}
.footer__link:hover { color: var(--yellow); }
.footer__trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #ccc;
  white-space: nowrap;
}
.footer__legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer__legal p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer__warning { color: #888 !important; }

/* CATFISH */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.catfish.hidden { transform: translateY(110%); }
.catfish__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(var(--container) - 40px);
  margin: 0 auto;
  flex-wrap: nowrap;
}
.catfish__text {
  flex: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.catfish__btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.95rem;
  white-space: nowrap;
}
.catfish__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  padding: 0;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
}
.catfish__close:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* EXIT POPUP */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.exit-popup {
  background: var(--dark-surface);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.exit-overlay.show .exit-popup { transform: translateY(0); }
.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #aaa;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.exit-popup__close:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.exit-popup__badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.exit-popup__title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.exit-popup__bonus {
  font-size: 1.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}
.exit-popup__sub {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 28px;
}
.exit-popup__cta { width: 100%; font-size: 1.2rem; padding: 16px; }

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media { gap: 32px; }
  .media-card { flex-direction: column; }
  .media-card__img-wrap { flex: none; width: 100%; max-height: 280px; }
  .media-card__body { padding: 28px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .steps { grid-template-columns: 1fr; gap: 20px; }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row { gap: 24px; }

  .media--left, .media--right { flex-direction: column; }
  .media__img-wrap { flex: none; width: 100%; max-height: 260px; }

  .hero__img { max-height: 280px; object-position: top; }
  .hero__media-wrap { max-height: 280px; }
  .hero__content { padding: 36px 0 48px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 400px; }

  .final-cta-media { max-height: 220px; }
  .final-cta-media__img { max-height: 220px; }
  .final-cta__btns { flex-direction: column; align-items: center; }
  .final-cta__btns .btn { width: 100%; max-width: 400px; }

  .footer__top { flex-direction: column; }
  .footer__links { gap: 8px; }
}

@media (max-width: 480px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; align-items: center; gap: 16px; }
  .hero__bonus { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .section__title { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .catfish__inner { flex-wrap: wrap; }
  .catfish__text { white-space: normal; }
  .exit-popup { padding: 36px 24px; }
  .exit-popup__bonus { font-size: 1.3rem; }
  .exit-popup__title { font-size: 1.6rem; }
  .header__logo-img { height: 32px; }
}

@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .btn { padding: 12px 16px; font-size: 0.95rem; }
}