/* ================================================================
   UNIBET ROMANIA – assets/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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #111111;
  background: #EEEEEE;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: clamp(1rem, 2vw, 1.15rem); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  min-width: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary = yellow (registration) */
.btn--register {
  background: #FFE720;
  color: #111111;
  border: 2px solid #111111;
  box-shadow: 0 4px 16px rgba(255,231,32,0.45), 0 2px 6px rgba(0,0,0,0.25);
}
.btn--register:hover {
  background: #f7dc00;
  box-shadow: 0 8px 24px rgba(255,231,32,0.55), 0 4px 12px rgba(0,0,0,0.3);
}
.btn--register:active { box-shadow: 0 2px 8px rgba(255,231,32,0.4); }

/* Green button */
.btn--green {
  background: #147B45;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(20,123,69,0.4), 0 2px 6px rgba(0,0,0,0.2);
}
.btn--green:hover {
  background: #0f6337;
  box-shadow: 0 8px 24px rgba(20,123,69,0.5), 0 4px 12px rgba(0,0,0,0.25);
}

/* Ghost button */
.btn--ghost {
  background: transparent;
  color: #147B45;
  border: 2px solid #147B45;
  box-shadow: 0 2px 8px rgba(20,123,69,0.2);
}
.btn--ghost:hover {
  background: #147B45;
  color: #fff;
  box-shadow: 0 6px 18px rgba(20,123,69,0.4);
}

/* Sizes */
.btn--sm { min-height: 40px; padding: 10px 18px; font-size: 0.82rem; }
.btn--lg { min-height: 52px; padding: 15px 36px; font-size: 1rem; }
.btn--xl { min-height: 56px; padding: 16px 40px; font-size: 1.05rem; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #147B45;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.nav-link {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-link:hover { background: rgba(255,255,255,0.18); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Ghost in header: white border */
.header-actions .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.header-actions .btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  color: #fff;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0d6236;
  padding: 16px 20px;
  position: sticky;
  top: 68px;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #FFE720; }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 64px 0; }
.bg-light { background: #fff; }

.section-title {
  text-align: center;
  color: #111111;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

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

.hero-banner-wrap {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 380px;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  right: 24px;
  bottom: 16px;
}
.hero-jackpot-badge {
  background: rgba(0,0,0,0.85);
  border: 2px solid #147B45;
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 260px;
  max-width: 320px;
}
.jackpot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.jlabel {
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 3px;
}
.jlabel.grand { background: #147B45; color: #fff; }
.jlabel.hot { background: #e05a00; color: #fff; }
.jmax { color: #FFE720; font-weight: 800; font-size: 0.85rem; margin-left: auto; }
.jackpot-bar-outer {
  width: 100%;
  height: 10px;
  background: #222;
  border-radius: 5px;
  margin-bottom: 8px;
  overflow: hidden;
}
.jackpot-bar-inner {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, #FFE720, #e05a00);
  border-radius: 5px;
}
.jackpot-current {
  text-align: center;
  color: #FFE720;
  font-weight: 900;
  font-size: 1.1rem;
}

.hero-content {
  padding: 48px 0 40px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,231,32,0.15);
  border: 1px solid #FFE720;
  color: #FFE720;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-bonus {
  color: #FFFFFF;
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.15;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-disclaimer {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin-top: 12px;
}

/* ================================================================
   GAMES
   ================================================================ */
.games-section { background: #EEEEEE; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.game-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  display: block;
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.game-img-wrap {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 1/1;
}
.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.game-card:hover .game-img-wrap img { transform: scale(1.05); }

.game-jackpot-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75);
  color: #FFE720;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 8px;
  text-align: center;
}
.game-exclusive-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #147B45;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.game-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.game-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111;
}
.game-provider {
  font-size: 0.78rem;
  color: #777;
}

/* ================================================================
   ADVANTAGES
   ================================================================ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.adv-card {
  background: #EEEEEE;
  border-radius: 10px;
  padding: 28px 24px;
  border-left: 4px solid #147B45;
  min-width: 0;
  transition: box-shadow 0.18s;
}
.adv-card:hover { box-shadow: 0 6px 20px rgba(20,123,69,0.15); }
.adv-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.adv-card h3 { color: #147B45; margin-bottom: 10px; }
.adv-card p { color: #444; font-size: 0.95rem; }

/* ================================================================
   BONUSES
   ================================================================ */
.bonuses-section { background: #0a1a0e; }
.bonuses-section .section-title { color: #fff; }
.bonuses-section .section-subtitle { color: rgba(255,255,255,0.65); }

.bonus-hero-card {
  background: linear-gradient(135deg, #147B45, #0f6337);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  min-width: 0;
}
.bonus-hero-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}
.bonus-hero-tag {
  display: inline-block;
  background: rgba(255,231,32,0.18);
  border: 1px solid #FFE720;
  color: #FFE720;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
}
.bonus-hero-text h3 { color: #fff; font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
.bonus-hero-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.bonus-hero-media {
  min-width: 0;
  overflow: hidden;
  max-height: 360px;
}
.bonus-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.bonus-hero-media:hover img { transform: scale(1.03); }
.media-link { display: block; width: 100%; height: 100%; }

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.bonus-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  transition: background 0.18s;
}
.bonus-card:hover { background: rgba(255,255,255,0.1); }
.bonus-card-icon { font-size: 1.8rem; }
.bonus-card h4 { color: #FFE720; font-weight: 800; }
.bonus-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; flex: 1; }

/* ================================================================
   HOW TO START
   ================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.step-card {
  background: #EEEEEE;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  min-width: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #147B45;
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(20,123,69,0.4);
}
.step-card h3 { color: #111; }
.step-card p { color: #555; font-size: 0.95rem; }

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

.sport-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sport-text { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.sport-text p { color: #444; font-size: 0.97rem; }

.sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sport-tag {
  background: #147B45;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.sport-media {
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  max-height: 400px;
}
.sport-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.sport-media:hover img { transform: scale(1.03); }

/* ================================================================
   CASINO REVIEW
   ================================================================ */
.casino-section { }
.casino-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.casino-media {
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  max-height: 420px;
  position: sticky;
  top: 88px;
}
.casino-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.casino-media:hover img { transform: scale(1.03); }

.casino-text { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.casino-text h3 { color: #147B45; margin-top: 8px; }
.casino-text p { color: #444; font-size: 0.97rem; }

.review-stars {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #EEEEEE;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 8px 0;
}
.stars {
  font-size: 1.4rem;
  color: #FFD700;
  letter-spacing: 3px;
}
.review-score {
  font-weight: 700;
  color: #147B45;
  font-size: 0.95rem;
}

/* ================================================================
   MOBILE
   ================================================================ */
.mobile-section { background: #EEEEEE; }
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.mobile-feature {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  min-width: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.18s, box-shadow 0.18s;
}
.mobile-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.mobile-icon { font-size: 1.8rem; margin-bottom: 12px; }
.mobile-feature h3 { color: #147B45; margin-bottom: 10px; }
.mobile-feature p { color: #555; font-size: 0.93rem; }

/* ================================================================
   PAYMENTS
   ================================================================ */
.payments-section { }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.payment-item {
  background: #EEEEEE;
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  align-items: flex-start;
  border: 1px solid #ddd;
  transition: border-color 0.18s;
}
.payment-item:hover { border-color: #147B45; }
.payment-icon { font-size: 1.6rem; }
.payment-name { font-weight: 800; font-size: 0.95rem; color: #111; }
.payment-info { font-size: 0.82rem; color: #666; }

.payments-info {
  background: #EEEEEE;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.payments-info p { flex: 1; min-width: 200px; color: #444; font-size: 0.93rem; }

/* ================================================================
   SUPPORT
   ================================================================ */
.support-section { background: #EEEEEE; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.support-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  min-width: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.support-icon { font-size: 2rem; }
.support-card h3 { color: #147B45; }
.support-card p { color: #555; font-size: 0.88rem; flex: 1; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.faq-item { border-bottom: 1px solid #e4e4e4; background: #fff; }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.97rem;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.15s, background 0.15s;
  overflow-wrap: anywhere;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: #147B45;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-q[aria-expanded="true"] { color: #147B45; background: #f5faf7; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-q:hover { background: #f5faf7; color: #147B45; }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta-section { background: #0a1a0e; }
.final-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-width: 0;
}
.final-cta-text { min-width: 0; }
.final-cta-text h2 { color: #fff; margin-bottom: 16px; }
.final-cta-bonus {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  color: #FFE720;
  margin-bottom: 16px;
  line-height: 1.3;
}
.final-cta-text p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.final-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.final-cta-media {
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  max-height: 380px;
}
.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.final-cta-media:hover img { transform: scale(1.03); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #1e1e1e;
  color: #ccc;
  font-size: 0.88rem;
}

/* Top row: socials + legal links */
.footer-top { background: #272727; padding: 18px 0; }
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-socials { display: flex; gap: 14px; align-items: center; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: color 0.15s;
}
.social-icon:hover { color: #fff; }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.footer-legal-links a {
  color: #bbb;
  font-size: 0.82rem;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: #fff; }
.footer-legal-links .sep { color: #555; }

/* Responsible gaming row */
.footer-badges-row { padding: 20px 0; background: #222; }
.footer-badges-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-badge-item { display: flex; align-items: center; }

.onjn-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #FFE720;
  border-radius: 6px;
  padding: 6px 12px;
}
.onjn-flag { font-size: 1.4rem; }
.onjn-text { color: #FFE720; font-weight: 800; font-size: 0.95rem; }

.joc-responsabil-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
}
.jr-icon { font-size: 1.2rem; }
.jr-text { color: #ddd; font-size: 0.82rem; line-height: 1.3; }

.footer-18plus {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.age-badge {
  background: #111;
  border: 2px solid #bbb;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 4px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}
.footer-18plus p { color: #bbb; font-size: 0.85rem; }

/* Divider */
.footer-divider { border: none; border-top: 1px solid #333; }

/* Certifications + payments */
.footer-certifications { padding: 24px 0; }
.footer-cert-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cert-col { display: flex; flex-direction: column; gap: 12px; min-width: 0; flex: 1; }
.cert-label { font-weight: 700; color: #bbb; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cert-logo-text {
  font-weight: 800;
  font-size: 0.75rem;
  color: #ddd;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 5px 8px;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
}
.cert-logo-text.egba { font-size: 0.95rem; color: #fff; border-color: #555; }
.cert-logo-text.ibia { color: #ddd; }
.cert-logo-text.ecogra { color: #8bc34a; border-color: #8bc34a; }
.cert-logo-text.certified { font-size: 1rem; }

.payment-logos { gap: 8px; }
.pay-logo {
  font-weight: 800;
  font-size: 0.78rem;
  color: #ddd;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 5px 10px;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}
.pay-logo.applepay { font-size: 0.85rem; color: #fff; }
.pay-logo.visa { font-size: 0.95rem; font-style: italic; color: #1a73e8; border-color: #1a73e8; }
.pay-logo.mc { color: #eb001b; border-color: #eb001b; }
.pay-logo.trustly { color: #0f5c2e; border-color: #0f5c2e; background: #e8f5e9; }
.pay-logo.brite { color: #6c3fc5; border-color: #6c3fc5; }
.brite-star { color: #e03a; }
.pay-logo.paysafe { color: #003087; border-color: #003087; }

/* Legal text */
.footer-legal { padding: 24px 0; }
.footer-legal p {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-legal p:last-child { margin-bottom: 0; }
.footer-legal a { color: #6db37f; text-decoration: underline; }
.footer-legal a:hover { color: #8ecfa0; }

/* Footer bottom logo */
.footer-bottom-logo {
  padding: 20px 0 24px;
  border-top: 1px solid #333;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* ================================================================
   EXIT POPUP
   ================================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.exit-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.exit-popup {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #777;
  transition: color 0.15s;
  line-height: 1;
  padding: 4px 8px;
}
.exit-popup-close:hover { color: #111; }
.exit-popup-tag {
  display: inline-block;
  background: #e8f5ee;
  color: #147B45;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.exit-popup-bonus {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3;
}
.exit-popup p { color: #666; font-size: 0.9rem; margin-bottom: 20px; }
.exit-disclaimer { color: #aaa !important; font-size: 0.75rem !important; margin-top: 12px; margin-bottom: 0 !important; }

/* ================================================================
   CATFISH BAR
   ================================================================ */
.catfish-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #0f6337;
  border-top: 2px solid #FFE720;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.catfish-bar.hidden { transform: translateY(110%); }
.catfish-inner {
  max-width: calc(100% - 0px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.catfish-text {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.catfish-btn { flex-shrink: 0; }
.catfish-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: color 0.15s;
  line-height: 1;
}
.catfish-close:hover { color: #fff; }

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

/* Tablet: max 1024px */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bonus-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Medium: max 900px */
@media (max-width: 900px) {
  .sport-content,
  .casino-content,
  .final-cta-card,
  .bonus-hero-card {
    grid-template-columns: 1fr;
  }
  .casino-media { position: static; }
  .bonus-hero-media { max-height: 260px; }
  .final-cta-media { max-height: 280px; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; }

  /* Header: hide nav, show burger */
  .main-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
}

/* Small tablet: max 768px */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
  .mobile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cert-inner { flex-direction: column; }
}

/* Mobile: max 480px */
@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }

  .hero-bonus { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .adv-grid { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .mobile-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }

  .hero-banner-wrap { max-height: 220px; }
  .hero-banner-img { max-height: 220px; }
  .hero-jackpot-badge { min-width: 0; max-width: 100%; right: 8px; bottom: 8px; }
  .jackpot-current { font-size: 0.9rem; }

  .bonus-hero-text { padding: 24px 20px; }

  .footer-top-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { gap: 4px; }
  .footer-legal-links .sep { display: none; }
  .footer-legal-links a { display: block; }

  .step-card { padding: 24px 20px; }
  .adv-card { padding: 22px 18px; }

  .catfish-text { font-size: 0.78rem; }

  /* Mobile CTA buttons 100% width */
  .hero-btns .btn,
  .final-cta-btns .btn,
  .section-cta-wrap .btn { width: 100%; }
}

/* Extra small: max 360px */
@media (max-width: 360px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero-bonus { font-size: 1.2rem; }
}
