/* Privé Casino UK Review — original stylesheet
 * Author: allan.vu
 * Theme: dark navy + champagne gold
 */

@font-face {
  font-family: "Prive Sans";
  src: url("/fonts/wxPSNVLoClAN.woff2") format("woff2"),
       url("/fonts/BFArCaDqYQYJ.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Prive Sans";
  src: url("/fonts/CdgkeSr8h39h.woff2") format("woff2"),
       url("/fonts/WDyfGHKXkBEl.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Prive Display";
  src: url("/fonts/0tdyfPtqEifw.woff2") format("woff2"),
       url("/fonts/2aHN6n9fRJDO.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0d18;
  --bg-2: #131630;
  --bg-3: #1a1e44;
  --line: #2a2f5e;
  --line-2: #3a4080;
  --text: #ecedfa;
  --text-dim: #a7accf;
  --gold: #d4af37;
  --gold-2: #f1c761;
  --gold-3: #ffd97a;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --danger: #ef4444;
  --ok: #22c55e;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.25);
  --container: 1200px;
  --header-h: 76px;
  --topbar-h: 38px;
  --font: "Prive Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Prive Display", "Prive Sans", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(212,175,55,0.08), transparent 70%),
    radial-gradient(900px 500px at 95% 5%, rgba(120,70,200,0.10), transparent 70%),
    linear-gradient(180deg, #090b16 0%, #0b0d18 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--gold-3); font-weight: 700; }

.layout { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold-2);
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* TOP UTILITY BAR */
.topbar {
  background: #060814;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-dim);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 51;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
.topbar a { color: var(--text-dim); }
.topbar a:hover { color: var(--gold-2); text-decoration: none; }
.topbar__sep { opacity: 0.4; }
.topbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-3);
  font-weight: 600;
}
.topbar__pill .dot {
  width: 7px; height: 7px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ok);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.topbar__lang { color: var(--gold-2); font-weight: 600; }

/* MAIN HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 24, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  padding: 0 20px;
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand img { max-height: 48px; width: auto; height: auto; }
.brand--footer img { max-height: 56px; opacity: 0.9; }

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold-2); text-decoration: none; }
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

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

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--gold-2);
  transition: 0.25s;
  border-radius: 2px;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* HEADINGS */
h1, h2, h3, h4 { font-family: var(--font-display); }
h1 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin: 14px 0 18px;
  background: linear-gradient(120deg, var(--gold-3) 0%, var(--gold-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  font-weight: 800;
}
h1 .accent {
  background: linear-gradient(90deg, #fff, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  margin: 0 0 18px;
  color: var(--gold-2);
  position: relative;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}
h3 { font-size: 21px; margin: 26px 0 12px; color: var(--gold-2); }
h4 { font-size: 17px; margin: 18px 0 8px; color: var(--text); }

/* HERO with full-width banner overlay */
.hero { padding: 0 0 30px; border-bottom: 1px solid var(--line); }
.hero__banner {
  background-size: cover;
  background-position: center 40%;
  background-color: var(--bg-3);
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold);
}
.hero__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,13,24,0.9) 0%, rgba(11,13,24,0.65) 45%, rgba(11,13,24,0.15) 100%),
    linear-gradient(180deg, rgba(11,13,24,0.3) 0%, rgba(11,13,24,0.6) 100%);
  pointer-events: none;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
  max-width: var(--container);
  width: 100%;
}
.hero__overlay h1 { margin: 8px 0 14px; }
.hero__sub {
  font-size: 17px;
  color: var(--gold-3);
  font-weight: 600;
  margin: 0 0 22px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
  color: var(--gold-3);
  font-weight: 600;
}
.hero__lede {
  font-size: 17px;
  color: var(--text-dim);
  margin: 28px 0 12px;
  max-width: 900px;
}
.hero__legal {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin: 14px 0 0;
}

/* SECTIONS */
.section { padding: 36px 0; border-bottom: 1px solid var(--line); }
.section:last-of-type { border-bottom: 0; }

/* CTA */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 22px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta-row--final { justify-content: center; text-align: center; }
.cta-row__note { color: var(--text-dim); font-size: 13px; }

.btn {
  display: inline-block;
  border: 0;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-3), var(--gold));
  color: #1a1300;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 12px 30px rgba(212,175,55,0.45); }
.btn--ghost {
  background: rgba(11,13,24,0.4);
  color: var(--gold-2);
  border: 1px solid var(--gold);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: var(--gold-soft); }
.btn--xl { padding: 16px 32px; font-size: 17px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* TOC */
.toc {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.toc__toggle {
  background: transparent;
  border: 0;
  color: var(--gold-2);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.toc__toggle::after { content: "▾"; margin-left: auto; transition: transform 0.2s; }
.toc__toggle[aria-expanded="false"]::after { transform: rotate(-90deg); }
.toc__list {
  list-style: decimal inside;
  margin: 14px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 32px;
}
.toc__list li { padding: 4px 0; }
.toc__list a { color: var(--text); }
.toc__list a:hover { color: var(--gold-2); }

/* FIGURES */
.figure {
  margin: 18px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.figure img { width: 100%; }

/* TABLES — desktop default */
.table-wrap {
  margin: 16px 0 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--bg-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.table-wrap--scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(212, 175, 55, 0.04); }
.t-procon thead th:first-child { color: var(--ok); }
.t-procon thead th:last-child { color: var(--danger); }
.t-facts th { color: var(--gold-2); width: 36%; }
.t-bonus__total td { background: var(--gold-soft); color: var(--gold-3); border-top: 2px solid var(--gold); }
.t-note { padding: 10px 16px; font-size: 13px; color: var(--text-dim); margin: 0; background: var(--bg-2); }

/* SLOT GRID */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.slot {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.slot:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.slot__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}
.slot__media img { width: 100%; height: 100%; object-fit: cover; }
.slot__rtp {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(11,13,24,0.88);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--gold);
}
.slot__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.slot__title { margin: 0; font-size: 15px; color: var(--text); }
.slot__meta { margin: 0; font-size: 12px; color: var(--text-dim); }
.slot__cta { display: flex; gap: 6px; margin-top: auto; padding-top: 8px; }
.slot__cta .btn { flex: 1; padding: 7px 8px; font-size: 12px; }

/* SPORT GRID */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.sport {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
}
.sport:hover { border-color: var(--gold); transform: translateY(-3px); }
.sport img { width: 100%; aspect-ratio: 220/299; object-fit: cover; }
.sport span {
  display: block;
  padding: 10px 8px;
  font-weight: 700;
  color: var(--gold-2);
  font-size: 14px;
  background: linear-gradient(180deg, transparent, var(--bg-3));
}

/* BONUS GRID */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.bonus {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
.bonus:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.bonus img { width: 100%; aspect-ratio: 294/400; object-fit: cover; }
.bonus__body { padding: 14px 16px 18px; text-align: center; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bonus__body h4 { margin: 0; color: var(--gold-2); font-size: 15px; letter-spacing: 0.02em; }
.bonus__amount { margin: 0; font-size: 18px; font-weight: 700; color: var(--text); font-family: var(--font-display); }
.bonus__amount strong { color: var(--gold-3); font-size: 22px; }
.bonus__meta { margin: 0; font-size: 12px; color: var(--text-dim); }
.bonus__body .btn { margin-top: auto; }

/* REVIEW GRID */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.review {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: 0.2s;
}
.review:hover { border-color: var(--gold); }
.review__head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.review__head img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.review__name { margin: 0; font-size: 16px; color: var(--text); }
.review__meta { margin: 2px 0 0; font-size: 12px; color: var(--text-dim); }
.review__title { margin: 8px 0 6px; color: var(--gold-2); font-size: 16px; }
.review p { color: var(--text-dim); margin: 0; }

/* LISTS */
.bullet-list, .step-list, .promo-list {
  margin: 12px 0 18px;
  padding-left: 22px;
}
.bullet-list li, .step-list li, .promo-list li { padding: 6px 0; }
.promo-list li::marker, .bullet-list li::marker { color: var(--gold); }
.step-list { padding-left: 26px; }

/* FAQ */
.faq {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin: 10px 0;
  transition: 0.2s;
}
.faq[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gold-2);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+";
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  font-weight: 400;
}
.faq[open] summary::before { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--text-dim); }

/* RATING */
.rating {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px;
  margin: 28px 0;
  box-shadow: var(--shadow-gold);
}
.rating h3 { margin: 0 0 14px; color: var(--gold-2); font-size: 20px; }
.rating__stars {
  display: inline-flex;
  gap: 6px;
  font-size: 38px;
  line-height: 1;
}
.rating__stars button {
  background: transparent;
  border: 0;
  color: var(--line);
  font-size: 38px;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.15s, transform 0.1s;
}
.rating__stars button:hover { transform: scale(1.1); }
.rating__stars[data-hover="1"] button:nth-child(-n+1),
.rating__stars[data-hover="2"] button:nth-child(-n+2),
.rating__stars[data-hover="3"] button:nth-child(-n+3),
.rating__stars[data-hover="4"] button:nth-child(-n+4),
.rating__stars[data-hover="5"] button:nth-child(-n+5),
.rating__stars[data-value="1"] button:nth-child(-n+1),
.rating__stars[data-value="2"] button:nth-child(-n+2),
.rating__stars[data-value="3"] button:nth-child(-n+3),
.rating__stars[data-value="4"] button:nth-child(-n+4),
.rating__stars[data-value="5"] button:nth-child(-n+5) { color: var(--gold-2); }
.rating__meta { color: var(--text-dim); font-size: 14px; margin: 12px 0 0; }

/* FOOTER */
.site-footer {
  border-top: 2px solid var(--gold);
  margin-top: 0;
  padding: 36px 0 32px;
  text-align: center;
  color: var(--text-dim);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-nav a { color: var(--text); font-size: 14px; }
.footer-nav a:hover { color: var(--gold-2); }
.site-footer__safety { font-size: 13px; padding: 10px 0; letter-spacing: 0.02em; }
.legal { margin: 6px 0; font-size: 13px; }
.legal--age { color: var(--gold-2); font-weight: 700; }

/* COOKIE CONSENT */
.consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.consent.is-hidden { display: none; }
.consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}
.consent__text { margin: 0; flex: 1 1 280px; font-size: 14px; }
.consent__actions { display: flex; gap: 8px; }

/* BACK TO TOP */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(180deg, var(--gold-3), var(--gold));
  color: #1a1300;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s;
  z-index: 40;
  pointer-events: none;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* STICKY BOTTOM BANNER */
.stickybar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold), 0 -4px 30px rgba(0,0,0,0.4);
  max-width: 760px;
  margin: 0 auto;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.stickybar[hidden] { display: none; }
.stickybar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.stickybar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  position: relative;
}
.stickybar__brand img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.stickybar__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.stickybar__offer {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-3);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.stickybar__sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}
.stickybar__cta { white-space: nowrap; }
.stickybar__close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
}
.stickybar__close:hover { color: var(--gold-2); background: var(--gold-soft); }

@media (max-width: 480px) {
  .stickybar__inner { padding: 8px 12px; gap: 10px; }
  .stickybar__brand img { height: 36px; }
  .stickybar__offer { font-size: 15px; }
  .stickybar__sub { font-size: 11px; }
  .stickybar__cta { padding: 8px 12px; font-size: 12px; }
  .to-top { bottom: 86px; }
}

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

/* hide topbar bits at narrow */
@media (max-width: 1100px) {
  .topbar__left span:nth-child(5),
  .topbar__left .topbar__sep:nth-child(4) { display: none; }
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
}

@media (max-width: 980px) {
  .topbar__right a:not(:last-child),
  .topbar__right .topbar__sep:nth-of-type(-n+2) { display: none; }
}

/* tablet & mobile — single column hero */
@media (max-width: 850px) {
  /* compact header: smaller logo, tighter gaps, keep CTAs visible */
  .site-header__inner { gap: 8px; padding: 0 12px; }
  .brand img { max-height: 40px; }

  /* slide-in nav panel triggered by burger */
  .nav {
    position: fixed;
    inset: calc(var(--header-h) + var(--topbar-h)) 0 0 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px 24px 80px;
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    align-items: stretch;
    overflow-y: auto;
    gap: 0;
    z-index: 49;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    padding: 16px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .nav a:hover::after { display: none; }

  /* compact Login + Sign Up always visible on mobile */
  .header-cta { display: flex; gap: 6px; margin-left: auto; }
  .header-cta .btn {
    padding: 8px 12px;
    font-size: 13px;
    min-height: 38px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .header-cta .btn--ghost {
    background: transparent;
    border: 1px solid var(--line-2);
    color: var(--text);
  }
  .burger { display: block; width: 38px; height: 38px; }
  .burger span { left: 9px; right: 9px; }
  .burger span:nth-child(1) { top: 12px; }
  .burger span:nth-child(2) { top: 18px; }
  .burger span:nth-child(3) { top: 24px; }
  .burger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
  .burger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

  .topbar { font-size: 11px; }
  .topbar__inner { gap: 8px; }
  .topbar__left span:nth-child(n+3),
  .topbar__left .topbar__sep { display: none; }
  .topbar__right { display: none; }

  /* HERO mobile */
  .hero__banner { min-height: 380px; }
  .hero__banner::before {
    background:
      linear-gradient(180deg, rgba(11,13,24,0.6) 0%, rgba(11,13,24,0.85) 100%);
  }
  .hero__overlay { padding: 32px 20px; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__bullets { justify-content: center; gap: 8px 14px; font-size: 13px; }

  .toc__list { columns: 1; }
  .cta-row { padding: 16px; }

  /* SLOTS */
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .slot__title { font-size: 14px; }
  .slot__meta { font-size: 11px; }
  .slot__cta .btn { padding: 6px 6px; font-size: 11px; }

  /* BONUS */
  .bonus-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bonus__amount strong { font-size: 18px; }

  /* SPORT */
  .sport-grid { grid-template-columns: repeat(3, 1fr); }

  h1 { font-size: clamp(28px, 8vw, 38px); }
  h2 { font-size: clamp(20px, 5vw, 26px); padding-left: 12px; }
  h3 { font-size: 18px; }

  /* TABLES — convert to card layout on mobile */
  .table-wrap { box-shadow: none; border-radius: var(--radius); }
  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap th,
  .table-wrap td,
  .table-wrap tr { display: block; }
  .table-wrap thead { display: none; }
  .table-wrap tbody tr {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin: 10px;
    padding: 6px 4px;
  }
  .table-wrap tbody tr:hover td { background: transparent; }
  .table-wrap tbody td {
    border: 0;
    border-bottom: 1px dashed var(--line);
    padding: 9px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
  }
  .table-wrap tbody td:last-child { border-bottom: 0; }
  .table-wrap tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--gold-2);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    max-width: 45%;
  }
  /* facts table — th becomes label */
  .t-facts tbody tr { display: flex; flex-direction: column; }
  .t-facts tbody th {
    padding: 9px 14px 4px;
    color: var(--gold-2);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 0;
    width: auto;
  }
  .t-facts tbody td { padding: 0 14px 10px; border-bottom: 1px dashed var(--line); }
  .t-facts tbody td::before { display: none; }

  .t-bonus__total td { display: block !important; text-align: center; }
  .t-bonus__total td::before { display: none; }
}

@media (max-width: 480px) {
  .hero__cta .btn { width: 100%; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .sport-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__bullets li { white-space: normal; }
  :root { --header-h: 64px; --topbar-h: 32px; }
  .brand img { max-height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
