/* ═══════════════════════════════════════════════
   BWIN CASINO FRANCE — styles.css
   Colors: #FFCC01 primary | #141414 bg | #000 header
   ═══════════════════════════════════════════════ */

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

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

body {
  background: #141414;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── VARIABLES ── */
:root {
  --primary: #FFCC01;
  --primary-dark: #e6b800;
  --primary-hover: #ffd633;
  --bg: #141414;
  --bg2: #1a1a1a;
  --bg3: #222;
  --bg4: #0d0d0d;
  --header-bg: #000;
  --border: #2a2a2a;
  --text: #fff;
  --text-muted: #888;
  --text-dim: #aaa;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --header-h: 60px;
  --subnav-h: 48px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--primary);
  color: #000;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(255, 204, 1, 0.35), 0 2px 6px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 24px rgba(255, 204, 1, 0.5), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(255,204,1,0.3); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn--xl { min-height: 52px; padding: 14px 32px; font-size: 16px; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid #1a1a1a;
}

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

.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo { height: 36px; width: auto; max-width: 120px; object-fit: contain; }

.main-nav { flex: 1; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.nav-list { display: flex; gap: 4px; white-space: nowrap; padding: 0; }
.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--primary); }

.header-actions { display: flex; gap: 8px; flex-shrink: 0; }
.header-actions .btn { min-height: 36px; padding: 8px 16px; font-size: 13px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--header-bg);
  border-top: 1px solid #1a1a1a;
  padding: 12px 20px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-nav-list a {
  display: block;
  padding: 10px 14px;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.mobile-nav-list a:hover { color: #fff; border-left-color: var(--primary); background: rgba(255,255,255,0.04); }
.mobile-nav-actions { display: flex; gap: 10px; }
.mobile-nav-actions .btn { flex: 1; min-height: 44px; }

/* ── SUB-NAV ── */
.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 990;
  background: var(--header-bg);
  border-bottom: 1px solid #1c1c1c;
}

.subnav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.subnav-inner::-webkit-scrollbar { display: none; }

.subnav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: var(--subnav-h);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
.subnav-item:hover { color: #fff; }
.subnav-item.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.subnav-badge::after {
  content: attr(data-badge);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 9px;
}

/* ── HERO ── */
.hero { position: relative; background: #000; }

.hero-banner-wrap {
  display: block;
  position: relative;
  max-height: 480px;
  overflow: hidden;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 28px 20px 40px;
  margin-top: -80px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-bonus {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 8px;
}

.hero-bonus-sub {
  color: var(--primary);
  font-size: 0.85em;
  display: block;
  margin-top: 4px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 16px;
}

.hero-tc {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── SECTION COMMON ── */
.section { padding: 40px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.2;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.see-all {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}
.see-all:hover { color: #fff; }

.section-cta {
  text-align: center;
  margin-top: 28px;
}

/* ── JACKPOT BAR ── */
.jackpot-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid #2e2e2e;
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.jackpot-icon { font-size: 18px; }
.jackpot-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; }
.jackpot-value { font-size: 22px; font-weight: 900; color: var(--primary); font-variant-numeric: tabular-nums; flex: 1; text-align: center; }
.jackpot-play { font-size: 12px; font-weight: 700; color: var(--primary); transition: opacity var(--transition); }
.jackpot-play:hover { opacity: 0.7; }

/* ── CAROUSEL WRAPPER ── */
.carousel-wrap { position: relative; }

.game-carousel,
.live-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.game-carousel::-webkit-scrollbar,
.live-carousel::-webkit-scrollbar { display: none; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30,30,30,0.92);
  border: 1px solid #333;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.carousel-btn--right { right: -6px; }
.carousel-btn:hover { background: var(--primary); color: #000; transform: translateY(-50%) scale(1.1); }

/* ── GAME CARDS ── */
.game-card {
  flex-shrink: 0;
  width: 165px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.12);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-exclusive { background: var(--primary); color: #000; }
.badge-drops { background: rgba(255,255,255,0.92); color: #222; border: 1px solid rgba(0,0,0,0.1); }

.game-media {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
  position: relative;
}
.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.game-card:hover .game-media img { transform: scale(1.06); }

.game-info {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.game-name { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.3; }
.game-prov { font-size: 11px; color: var(--text-muted); }

.game-jackpot-bar {
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 5px 8px;
}

/* ── LIVE CASINO ── */
.live-casino { background: var(--bg4); padding: 40px 0; }

.live-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-bottom: 16px;
}
.live-filters::-webkit-scrollbar { display: none; }

.filter-pill {
  flex-shrink: 0;
  padding: 6px 16px;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg3);
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-pill:hover, .filter-pill.active {
  color: #000;
  background: var(--primary);
  border-color: var(--primary);
}

.live-card {
  flex-shrink: 0;
  width: 220px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.live-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #111;
}
.live-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.live-card:hover .live-media img { transform: scale(1.06); }

.live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}

.live-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 6px; }
.live-meta { display: flex; align-items: center; gap: 8px; }
.live-bet { font-size: 12px; font-weight: 700; color: var(--text-dim); }
.live-seats { font-size: 12px; color: var(--text-dim); }

.live-players { display: flex; gap: 3px; }
.lp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 5px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}
.lp1 { background: #c62828; color: #fff; }
.lp2 { background: #1565c0; color: #fff; }
.lp3 { background: #2e7d32; color: #fff; }

/* ── PROMOTIONS ── */
.promos { background: var(--bg); }

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

.promo-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.1);
}
.promo-card--featured { border-color: rgba(255,204,1,0.4); box-shadow: 0 4px 24px rgba(255,204,1,0.1); }
.promo-card--featured:hover { border-color: rgba(255,204,1,0.7); }

.promo-media { width: 100%; aspect-ratio: 16/7; overflow: hidden; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.promo-card:hover .promo-media img { transform: scale(1.04); }

.promo-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.promo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(255,204,1,0.4);
  border-radius: 4px;
  padding: 3px 8px;
  align-self: flex-start;
}
.promo-body h3 { font-size: 15px; font-weight: 800; line-height: 1.3; }
.promo-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.promo-body .btn { margin-top: 4px; }
.promo-body small { font-size: 10px; color: #555; line-height: 1.4; }

/* ── VIP TEASER ── */
.vip-teaser {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vip-content { padding: 32px; }
.vip-content h3 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.vip-content p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.vip-tiers {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tier {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.tier-bronze { background: #6d4c41; color: #d7a57a; }
.tier-silver { background: #424242; color: #bdbdbd; }
.tier-gold { background: #4a3800; color: var(--primary); }
.tier-platinum { background: #1a237e; color: #90caf9; }
.tier-diamond { background: linear-gradient(135deg, #1a237e, #7b1fa2); color: #e040fb; }
.tier-arrow { color: var(--text-muted); font-size: 13px; }

.vip-media {
  display: block;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}
.vip-media img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }

/* ── PROVIDERS + SEO ── */
.providers { background: var(--bg4); }

.providers-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-bottom: 36px;
}
.providers-strip::-webkit-scrollbar { display: none; }

.prov-logo {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--transition);
}
.prov-logo:hover { color: #fff; border-color: rgba(255,255,255,0.2); background: var(--bg3); }

/* ── SEO TEXT ── */
.seo-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.seo-visible h2 { font-size: 18px; font-weight: 800; margin-bottom: 14px; color: #fff; }
.seo-visible h3 { font-size: 15px; font-weight: 700; color: #ddd; margin: 18px 0 8px; }
.seo-visible p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }

.seo-collapse { display: none; }
.seo-collapse.open { display: block; }
.seo-collapse h3 { font-size: 15px; font-weight: 700; color: #ddd; margin: 18px 0 8px; }
.seo-collapse p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition);
  background: none;
  border: none;
}
.read-more-btn:hover { opacity: 0.75; }

/* ── FOOTER ── */
.footer {
  background: var(--bg4);
  border-top: 1px solid #1c1c1c;
  padding-top: 32px;
  padding-bottom: 100px;
  position: relative;
}

.footer-lang-row {
  padding: 0 0 16px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition);
}
.lang-btn:hover { border-color: rgba(255,255,255,0.2); }
.lang-flag { font-size: 18px; }
.lang-caret { color: var(--text-muted); font-size: 11px; }

.footer-divider { height: 1px; background: #1c1c1c; margin-bottom: 28px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }

.footer-middle {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  margin-bottom: 24px;
}

.footer-logo-link { display: flex; align-items: center; }
.footer-logo { height: 40px; width: auto; max-width: 130px; object-fit: contain; }

.payment-row { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.pay-badge {
  padding: 5px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-legal { margin-bottom: 24px; }
.footer-legal p {
  font-size: 11px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cert-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.cert-mga { background: #1a0060; color: #a78bfa; border: 1px solid #3b1fa8; }
.cert-gamstop { background: #1b1b1b; color: #888; border: 1px solid #333; }
.cert-ecogra { background: #0d3d00; color: #6abf40; border: 1px solid #2a7a10; }
.cert-egba { background: #c62828; color: #fff; }
.cert-ibia { background: #0a2240; color: #5bc4f5; border: 1px solid #1565c0; }
.cert-pgsi { background: #1b1b1b; color: #888; border: 1px solid #333; }
.cert-gov { background: #1b1b1b; color: #888; border: 1px solid #333; }
.cert-itech { background: #1b1b1b; color: #888; border: 1px solid #333; }
.cert-gc { background: #1b1b1b; color: #888; border: 1px solid #333; }
.cert-18 { background: #b71c1c; color: #fff; font-size: 13px; min-width: 36px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #1c1c1c;
}
.footer-tagline { font-size: 11px; color: #444; }
.footer-bottom-right { display: flex; gap: 20px; align-items: center; }
.footer-time { font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.footer-copy { font-size: 12px; color: #444; }

.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition), transform var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary); color: #000; transform: translateY(-3px); }

/* ── CATFISH ── */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1600 100%);
  border-top: 2px solid var(--primary);
  padding: env(safe-area-inset-bottom, 0) 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  transition: transform 0.35s ease;
}
.catfish.hidden { transform: translateY(110%); pointer-events: none; }

.catfish-inner {
  max-width: calc(100% - 0px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0));
  flex-wrap: nowrap;
}
.catfish-text {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  min-width: 0;
}
.catfish-btn { min-height: 40px; padding: 10px 18px; font-size: 13px; flex-shrink: 0; }
.catfish-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.catfish-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

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

.exit-popup {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid #333;
  color: #aaa;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.exit-media { display: block; width: 100%; aspect-ratio: 16/6; overflow: hidden; }
.exit-media img { width: 100%; height: 100%; object-fit: cover; }

.exit-content {
  padding: 24px;
  text-align: center;
}

.exit-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}
.exit-bonus { font-size: 24px; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.exit-tc { margin-top: 12px; font-size: 10px; color: #444; line-height: 1.5; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .vip-teaser { grid-template-columns: 1fr 280px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vip-teaser { grid-template-columns: 1fr; }
  .vip-media { max-height: 200px; }
  .main-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .hero-bonus { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 340px; }
  .jackpot-value { font-size: 18px; }
  .game-card { width: 145px; }
  .live-card { width: 190px; }
  .section-cta .btn { width: 100%; }
}

@media (max-width: 540px) {
  .container { padding: 0 14px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .footer-middle { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cert-row { gap: 6px; }
  .vip-tiers { gap: 6px; }
  .jackpot-bar { flex-wrap: wrap; gap: 6px; }
  .jackpot-value { text-align: left; }
}

@media (max-width: 400px) {
  .game-card { width: 130px; }
  .live-card { width: 170px; }
  .hero-content { margin-top: -60px; padding: 20px 14px 32px; }
  .subnav-item { padding: 0 12px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}

body.nav-open { overflow: hidden; }
