/* ============================================================
   newzealand22bet.com — 22Bet New Zealand satellite
   The 22bet masthead/footer frame stays teal; the interior runs
   on NZ flag navy (#00247d) and red (#cc142b) with white paper.
   ============================================================ */

:root {
  --frame-deep: #054248;
  --frame-panel: #054146;
  --frame-page: #0a636b;
  --nz-navy: #00247d;
  --nz-navy-soft: #1d3f9e;
  --nz-navy-pale: #e9eefb;
  --nz-navy-line: #ccd7f0;
  --nz-red: #cc142b;
  --nz-red-dark: #a90f22;
  --go-green: #2eb256;
  --go-green-dark: #2ca331;
  --star-gold: #ffc93c;
  --txt: #232a36;
  --txt-soft: #2f3745;
  --txt-mute: #6b7686;
  --txt-faint: #98a2b1;
  --sheet: #ffffff;
  --sheet-soft: #f5f7fb;
  --line-soft: #e5e9f2;
  --signin-bg: #185b62;
  --round: 10px;
  --frame-w: 1200px;
  --ff: "Open Sans", Arial, sans-serif;
  --ff-head: "Roboto Condensed", "Open Sans", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  font-size: 15px;
  line-height: 1.65;
  color: var(--txt);
  background: var(--frame-page);
}

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

a { color: var(--nz-navy-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

.frame {
  max-width: var(--frame-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TOPBAR ============ */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--frame-deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  gap: 18px;
}

.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }

.menu { display: flex; align-items: center; gap: 4px; margin: 0 auto; }

.menu a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 38px;
  transition: background .2s;
}
.menu a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }
.menu a.menu--here { background: var(--nz-red); }

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

.cta-pill {
  background: var(--go-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 26px;
  border-radius: 38px;
  flex-shrink: 0;
  transition: background .2s;
}
.cta-pill:hover { background: var(--go-green-dark); text-decoration: none; }
.cta-pill--dim { background: var(--signin-bg); }
.cta-pill--dim:hover { background: #0c4a50; }

.flag-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.flag-tag svg {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s, opacity .25s;
}
.menu-btn.menu-btn--x span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.menu-btn--x span:nth-child(2) { opacity: 0; }
.menu-btn.menu-btn--x span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu-drawer {
  display: none;
  background: var(--frame-panel);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.menu-drawer.menu-drawer--open { display: block; }
.menu-drawer a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}
.menu-drawer a:hover { background: rgba(255, 255, 255, .07); text-decoration: none; }

.menu-drawer__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 22px;
}
.menu-drawer__cta a {
  flex: 1 1 0;
  max-width: 190px;
  padding: 13px 18px;
  border: 0;
  border-radius: 38px;
  background: var(--go-green);
  transition: background .2s;
}
.menu-drawer__cta a:hover { background: var(--go-green-dark); }
.menu-drawer__cta a.menu-drawer__dim { background: var(--signin-bg); }
.menu-drawer__cta a.menu-drawer__dim:hover { background: #0c4a50; }

/* ============ INTRO (hero) ============ */

.intro {
  margin-top: 72px;
  background: linear-gradient(130deg, #001547 0%, var(--nz-navy) 58%, #12328f 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--nz-red);
}

.intro__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 52px 0;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

/* Artwork: background bounded to the container width, side edges dissolve */
.intro__bg {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--frame-w));
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.intro__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 12, 40, .95) 0%, rgba(0, 21, 63, .74) 40%, rgba(0, 36, 125, .1) 74%);
}

.intro__copy { flex: 1 1 auto; max-width: 640px; position: relative; z-index: 1; }

.intro h1 {
  font-family: var(--ff-head);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.intro h1 .flare { color: var(--nz-red); text-shadow: 0 0 14px rgba(255, 255, 255, .25); }

.intro__note {
  color: rgba(255, 255, 255, .93);
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 560px;
}

.intro__row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.mark-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  border-radius: var(--round);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}
.mark-chip .star { color: var(--star-gold); }
.intro__mark { margin-bottom: 16px; }

/* ============ ACTIONS ============ */

.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  border: 0;
  border-radius: var(--round);
  padding: 14px 32px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
}
.act:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .24); }
.act--go { background: var(--nz-navy-soft); }
.act--go:hover { background: var(--nz-navy); }
.act--bonus { background: var(--nz-red); }
.act--bonus:hover { background: var(--nz-red-dark); }
.act--calm { background: var(--go-green); }
.act--calm:hover { background: var(--go-green-dark); }
.act--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .6);
}
.act--ghost:hover { background: rgba(255, 255, 255, .14); }
.act svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============ ZONES / CARDS ============ */

.zone { padding: 30px 0 50px; }

.card {
  background: var(--sheet);
  border-radius: var(--round);
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 10, 40, .14);
}

.card > *:last-child { margin-bottom: 0; }

.card h2 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--nz-navy);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card h2::before {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Southern Cross: four red stars */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cg fill='%23cc142b' stroke='%23fff' stroke-width='.6'%3E%3Cpath d='M13 1l1.2 2.6 2.8.3-2.1 1.9.6 2.8L13 7.2l-2.5 1.4.6-2.8L9 3.9l2.8-.3z'/%3E%3Cpath d='M5 9l1 2.1 2.3.2-1.7 1.6.5 2.3L5 14.1l-2.1 1.1.5-2.3-1.7-1.6 2.3-.2z'/%3E%3Cpath d='M21 9l1 2.1 2.3.2-1.7 1.6.5 2.3L21 14.1l-2.1 1.1.5-2.3-1.7-1.6 2.3-.2z'/%3E%3Cpath d='M13 16l1.1 2.4 2.6.2-2 1.8.6 2.6-2.3-1.3-2.3 1.3.6-2.6-2-1.8 2.6-.2z'/%3E%3C/g%3E%3C/svg%3E");
}

.card h3 {
  font-family: var(--ff-head);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--txt-soft);
  margin: 26px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--nz-red);
}

.card p { margin-bottom: 14px; }
.card ol { margin: 0 0 16px 22px; }
.card li { margin-bottom: 8px; }

.card ul {
  list-style: none;
  margin: 0 0 16px;
}
.card ul li {
  position: relative;
  padding-left: 30px;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../pics/dot-main.webp");
}

.small-note {
  font-size: 13.5px;
  color: var(--txt-mute);
  font-style: italic;
}

/* ============ PHOTO BLOCK ============ */

.photo {
  margin: 20px 0 18px;
  border-radius: var(--round);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 10, 40, .16);
}
.photo img { width: 100%; }
.photo figcaption {
  background: var(--nz-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-top: 3px solid var(--nz-red);
}

/* ============ TRAIL (breadcrumbs) ============ */

.trail {
  margin-bottom: 14px;
  font-size: 13px;
}
.trail ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.trail li { color: rgba(255, 255, 255, .78); }
.trail li + li::before { content: "»"; margin-right: 6px; color: rgba(255, 255, 255, .45); }
.trail a { color: #fff; }

/* ============ TABLES ============ */

.tablebox {
  margin: 18px 0;
  border: 1px solid var(--nz-navy-line);
  border-radius: var(--round);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 10, 40, .1);
  background: #fbfcff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  table-layout: auto;
}

thead th {
  background: var(--nz-navy);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .03em;
  padding: 11px 12px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 3px solid var(--nz-red);
}

tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
tbody tr:nth-child(even) { background: #f2f5fc; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody td, tbody th { transition: background-color .15s ease; }
tbody tr:hover td { background: var(--nz-navy-pale); }
tbody tr:hover th { background: var(--nz-navy-line); }
tbody th {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  background: var(--nz-navy-pale);
  color: var(--txt-soft);
  font-weight: 600;
  vertical-align: top;
}

table.table--slim { font-size: 12.5px; }
table.table--slim thead th { font-size: 11px; padding: 10px 9px; }
table.table--slim tbody td { padding: 10px 9px; }

/* ============ GOOD / BAD ============ */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 18px 0; }
.split--good, .split--bad {
  border-radius: var(--round);
  padding: 20px 22px;
}
.split--good { background: #eef7f1; border: 1px solid #cfe8d8; }
.split--bad { background: #fdf0f1; border: 1px solid #f2d2d6; }
.split--good h3, .split--bad h3 { margin-top: 0; font-size: 18px; border-left: 0; padding-left: 0; }
.split--good h3 { color: var(--go-green-dark); }
.split--bad h3 { color: var(--nz-red); }
.split--good ul, .split--bad ul { margin: 0; }
.split--good ul li::before { background-image: url("../pics/dot-good.webp"); }
.split--bad ul li::before { background-image: url("../pics/dot-bad.webp"); }

/* ============ WALKTHROUGH ============ */

.walk { counter-reset: wstep; list-style: none; margin: 16px 0 !important; }
.walk li {
  counter-increment: wstep;
  position: relative;
  padding: 0 0 14px 52px;
  margin: 0;
}
.walk li::before {
  content: counter(wstep);
  position: absolute;
  left: 0; top: -2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--nz-navy);
  border: 2px solid var(--nz-red);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ DEAL STRIPS ============ */

.deal {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(120deg, #001547 0%, var(--nz-navy) 70%, #12328f 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--round);
  padding: 34px 36px;
  margin-bottom: 24px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 10, 40, .2);
}
.deal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 12, 40, .94) 0%, rgba(0, 21, 63, .76) 46%, rgba(0, 36, 125, .1) 78%);
  pointer-events: none;
}
.deal--hot::before {
  background: linear-gradient(100deg, rgba(74, 6, 14, .94) 0%, rgba(140, 12, 26, .76) 46%, rgba(204, 20, 43, .1) 78%);
}

.deal__copy { flex: 1; max-width: 420px; position: relative; z-index: 1; }
.deal__copy .deal__go { margin-top: 18px; }

.deal__tag {
  color: var(--star-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.deal__head {
  font-family: var(--ff-head);
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.deal__sub { color: rgba(255, 255, 255, .88); font-size: 14px; margin-bottom: 0; }

/* ============ GETAPP STRIP ============ */

.getapp {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(115deg, #000d33 0%, var(--nz-navy) 62%, #16357f 100%);
  border-radius: var(--round);
  padding: 28px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 10, 40, .2);
}
.getapp__pic { flex: 0 0 190px; position: relative; z-index: 1; }
.getapp__pic img { border-radius: var(--round); }
.getapp__copy { flex: 1; position: relative; z-index: 1; }
.getapp__head {
  font-family: var(--ff-head);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.getapp__sub { color: rgba(255, 255, 255, .88); font-size: 14px; }
.getapp__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #06102b;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  border-radius: var(--round);
  padding: 10px 22px 10px 16px;
  transition: background .2s;
  min-width: 210px;
}
.shop-link:hover { background: #0d1d4a; text-decoration: none; }
.shop-link svg { width: 30px; height: 30px; flex-shrink: 0; }
.shop-link__txt { line-height: 1.2; }
.shop-link__mini { font-size: 11px; opacity: .82; display: block; }
.shop-link__big { font-size: 17px; font-weight: 700; display: block; }

/* ============ GAME CARDS ============ */

.games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 0;
}
.game {
  flex: 1 1 300px;
  max-width: calc((100% - 36px) / 3);
  background: var(--sheet-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--round);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.game:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 10, 40, .14);
  border-color: var(--nz-navy-line);
}
.game__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}
.game__name {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nz-navy);
  margin-bottom: 8px;
}
.game p { margin-bottom: 0; font-size: 14.5px; }

/* ============ RAVES (reviews) ============ */

/* Flex instead of grid so a short last row centres itself */
.raves {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.rave { flex: 1 1 300px; max-width: calc((100% - 36px) / 3); }
@media (max-width: 1024px) {
  .rave, .game { max-width: calc((100% - 18px) / 2); }
}
@media (max-width: 700px) {
  .rave, .game { max-width: 100%; }
}
.rave {
  background: var(--sheet-soft);
  border: 1px solid var(--line-soft);
  border-top: 4px solid var(--nz-red);
  border-radius: var(--round);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.rave__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 8px 10px; }
.rave__name { font-weight: 700; color: var(--txt-soft); }
.rave__score {
  background: var(--nz-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--round);
  padding: 3px 12px;
  flex-shrink: 0;
}
.rave__stars { color: var(--star-gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.rave__text { font-style: italic; color: var(--txt); font-size: 14px; margin: 0; }

/* ============ TOTAL SCORE ============ */

.score-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--nz-navy);
  color: #fff;
  border-radius: var(--round);
  border-left: 6px solid var(--nz-red);
  padding: 18px 26px;
  margin-top: 18px;
}
.score-strip__value {
  font-family: var(--ff-head);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--star-gold);
}
.score-strip__label { font-size: 15px; font-weight: 700; text-transform: uppercase; }

/* ============ ACCORDION ============ */

.acc-list { margin-top: 6px; }
.acc { border-bottom: 1px solid var(--line-soft); }
.acc summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  color: var(--txt-soft);
  padding: 15px 34px 15px 0;
  position: relative;
  list-style: none;
  font-size: 15.5px;
  transition: color .18s ease, padding-left .18s ease;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--nz-navy);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}
.acc summary:hover { color: var(--nz-navy-soft); padding-left: 6px; }
.acc summary:hover::after { transform: translateY(-50%) scale(1.12); background: var(--nz-navy-soft); }
.acc[open] summary::after { content: "\2212"; background: var(--nz-red); }
.acc[open] summary:hover::after { background: var(--nz-red-dark); }
.acc .acc__body { padding: 0 0 16px; }
.acc .acc__body p { margin-bottom: 8px; }

/* ============ EDITOR NOTE ============ */

.editor-note {
  background: var(--nz-navy-pale);
  border-left: 4px solid var(--nz-navy);
  border-radius: var(--round);
  padding: 22px 26px;
  font-style: italic;
}
.editor-note__name { font-weight: 700; font-style: normal; color: var(--nz-navy); }

/* ============ BASEMENT (footer) ============ */

.basement {
  background: var(--frame-deep);
  color: rgba(255, 255, 255, .8);
  padding: 44px 0 0;
  margin-top: 20px;
}
.basement__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.basement__about img { height: 40px; width: auto; margin-bottom: 14px; }
.basement__about p { font-size: 13px; line-height: 1.6; }

.basement__col h4 {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 8px;
  position: relative;
}
.basement__col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #2da6b1;
  border-radius: 2px;
}
.basement__col ul { list-style: none; margin-top: 12px; }
.basement__col li { margin-bottom: 9px; }
.basement__col a { color: rgba(255, 255, 255, .7); font-size: 14px; }
.basement__col a:hover { color: #fff; }

.basement__warn {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.age-badge {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 2px solid #f04c44;
  color: #f04c44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.basement__warn p { font-size: 12.5px; line-height: 1.55; margin: 0; }

.basement__base {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}

/* ============ UP BUTTON ============ */

.up-btn {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--nz-navy-soft);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
  z-index: 90;
}
.up-btn.up-btn--show { opacity: 1; visibility: visible; transform: translateY(0); }
.up-btn:hover { background: var(--nz-navy); }
.up-btn svg { width: 22px; height: 22px; }

/* ============ LOST (404) ============ */

.lost {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
}
.lost__code {
  font-family: var(--ff-head);
  font-size: 130px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.lost h1 { color: #fff; font-family: var(--ff-head); text-transform: uppercase; font-size: 32px; margin: 12px 0; }
.lost p { color: rgba(255, 255, 255, .88); margin-bottom: 26px; }

/* ============ LEGAL ============ */

.doc-date { font-size: 13.5px; color: var(--txt-mute); margin-bottom: 18px; }

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

@media (max-width: 1080px) {
  .topbar__inner { gap: 10px; }
  .site-logo img { height: 38px; }
  .menu { gap: 2px; }
  .menu a { padding: 9px 11px; font-size: 12px; }
  .cta-pill { padding: 10px 16px; font-size: 12px; }
  .topbar-cta { gap: 8px; }
  .flag-tag { font-size: 12px; gap: 6px; }
  .flag-tag svg { width: 26px; height: 17px; }
}

@media (max-width: 1024px) {
  .intro h1 { font-size: 36px; }
  .basement__grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 28px 26px; }

  .tablebox {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tablebox table { min-width: 500px; }
  .tablebox thead th,
  .tablebox tbody td,
  .tablebox tbody th { min-width: 140px; }
  .tablebox table.table--slim thead th,
  .tablebox table.table--slim tbody td,
  .tablebox table.table--slim tbody th { min-width: 120px; }
  .tablebox tbody tr > *:first-child,
  .tablebox thead th:first-child { min-width: 160px; }
}

@media (max-width: 860px) {
  .menu, .topbar-cta { display: none; }
  .flag-tag { margin-left: auto; }
  .menu-btn { display: block; }
  .intro__inner { flex-direction: column; align-items: flex-start; padding: 34px 0; min-height: 0; }
  .intro__copy { width: 100%; max-width: 100%; }
  .intro__bg::after {
    background: linear-gradient(180deg, rgba(0, 12, 40, .68) 0%, rgba(0, 12, 40, .68) 60%, rgba(0, 12, 40, .66) 100%);
  }
  .intro h1 { font-size: 30px; }
  .intro h1, .intro__note, .trail {
    text-shadow:
      0 0 2px rgba(0, 8, 28, .98),
      0 1px 4px rgba(0, 8, 28, .95),
      0 2px 12px rgba(0, 8, 28, .92);
  }
  .split { grid-template-columns: 1fr; }
  .deal, .getapp { flex-direction: column; align-items: flex-start; }
  .deal::before, .deal--hot::before { background: none; }
  .deal__copy {
    max-width: 100%;
    background: rgba(0, 12, 40, .74);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--round);
    padding: 22px 20px;
  }
  .deal--hot .deal__copy { background: rgba(74, 6, 14, .74); }
  .getapp__pic { flex-basis: auto; max-width: 280px; }
  .getapp__row { flex-direction: row; flex-wrap: wrap; }
  .basement__base { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .intro__bg { background-position: 70% center; }
}

@media (max-width: 560px) {
  .basement__grid { grid-template-columns: 1fr; text-align: center; }
  .basement__about img { margin-left: auto; margin-right: auto; }
  .basement__warn { flex-direction: column; text-align: center; }
  .card { padding: 22px 16px; }
  .card h2 { font-size: 23px; }
  .intro h1 { font-size: 26px; }
  .lost__code { font-size: 90px; }

  .intro__copy,
  .deal__copy,
  .getapp__copy { text-align: center; width: 100%; }
  .intro__row,
  .deal__go,
  .getapp__row,
  .trail ol { justify-content: center; }
  .deal__go, .getapp__row { display: flex; width: 100%; }
  .intro__inner, .deal, .getapp { align-items: center; }
  .intro__mark { align-self: center; }
}

@media (max-width: 450px) {
  .frame { padding: 0 10px; }
  .topbar__inner { height: 60px; gap: 10px; }
  .site-logo img { height: 34px; }
  .flag-tag svg { width: 26px; height: 17px; }
  .flag-tag { font-size: 12px; gap: 6px; }
  .intro { margin-top: 60px; }
  .card { padding: 18px 12px; }
  .deal, .getapp { padding: 20px 14px; }
  .intro__inner { padding: 28px 0; }
  thead th, tbody td, tbody th { padding: 8px 6px; }
}

@media (max-width: 400px) {
  .menu-drawer__cta { flex-direction: column; align-items: center; }
  .menu-drawer__cta a { flex: 0 0 auto; width: 100%; max-width: 260px; }
}

@media (max-width: 360px) {
  .topbar__inner { height: 54px; gap: 8px; }
  .site-logo img { height: 28px; }
  .flag-tag svg { width: 22px; height: 15px; }
  .flag-tag { font-size: 11px; gap: 5px; }
  .menu-btn { padding: 6px; }
  .menu-btn span { width: 22px; height: 2.5px; margin: 4px 0; }
  .menu-btn.menu-btn--x span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-btn.menu-btn--x span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .intro { margin-top: 54px; }
  .lost { min-height: calc(100vh - 54px); }
}

/* ============ 22BET COUNTRY LINKS ============ */
.basement__countries {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 24px;
}
.basement__countries-title {
  display: inline-block;
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 8px;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.basement__countries-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: rgb(45, 166, 177);
  border-radius: 2px;
}
.basement__countries-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.basement__country {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.basement__country:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  text-decoration: none;
}
.basement__country.basement__country--current {
  background: rgba(233, 185, 73, .1);
  border-color: #e9b949;
  color: #fff;
}
.basement__flag {
  flex-shrink: 0;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.basement__flag svg { display: block; width: 100%; height: 100%; }
@media (max-width: 560px) {
  .basement__countries { text-align: center; }
  /* two even columns; every name stays on one line */
  .basement__countries-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .basement__countries-list li { min-width: 0; }
  .basement__country { display: flex; width: 100%; min-width: 0; padding: 7px 10px 7px 7px; font-size: 12.5px; text-align: left; white-space: nowrap; }
  .basement__country-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 380px) {
  .basement__countries-list { gap: 6px; }
  .basement__country { gap: 6px; padding: 6px 8px 6px 6px; font-size: 11.5px; }
  .basement__flag { width: 18px; height: 12px; }
}
@media (max-width: 339px) {
  .basement__country { gap: 5px; padding: 6px 6px 6px 5px; font-size: 11px; letter-spacing: -.01em; }
  .basement__flag { width: 16px; height: 11px; }
}
/* up to 330px: one pill per row, back to the regular size */
@media (max-width: 330px) {
  .basement__countries-list { grid-template-columns: minmax(0, 1fr); }
  .basement__country { gap: 9px; padding: 7px 12px 7px 8px; font-size: 12.5px; letter-spacing: normal; }
  .basement__flag { width: 22px; height: 15px; }
}
