/* Fruity King. BEM, no framework. */

@font-face {
  font-family: "Anybody";
  src: url("../fonts/anybody.woff2") format("woff2");
  font-weight: 700 900;
  font-stretch: 50% 150%;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --grove-950: #07201A;
  --grove-900: #0A2A20;
  --grove-800: #0F3D2E;
  --grove-700: #15503D;
  --grove-600: #1F6A51;
  --grove-300: #8FB5A4;
  --paper: #F6F1E6;
  --paper-2: #EDE5D4;
  --card: #FFFDF7;
  --line: #E2D8C4;
  --line-2: #CDBFA3;
  --ink: #1B1813;
  --ink-2: #463F34;
  --muted: #756C5D;
  --peel: #FF6A13;
  --peel-600: #E55705;
  --peel-100: #FFE7D6;
  --lime: #CBEA3B;
  --lime-600: #A9C920;
  --lime-100: #F0F8CC;
  --berry: #E3245C;
  --gold: #F4B42C;
  --ok: #1D7A4B;
  --ok-bg: #E2F3E8;
  --wait: #9A6A0B;
  --wait-bg: #FBF0D5;
  --stop: #B42F2F;
  --stop-bg: #FBE3E0;

  --display: "Anybody", "Arial Narrow", "Helvetica Neue", sans-serif;
  --text: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-xs: 6px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-1: 0 1px 0 rgba(27, 24, 19, .05), 0 6px 18px -10px rgba(27, 24, 19, .25);
  --shadow-2: 0 2px 0 rgba(27, 24, 19, .04), 0 22px 40px -22px rgba(7, 32, 26, .45);

  --wrap: 1360px;
  --gutter: clamp(16px, 3vw, 32px);
  --bar-h: 64px;
  --tabbar-h: 0px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- reset and base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: var(--tabbar-h);
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--grove-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--peel-600); }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
dl, dd { margin: 0; }
table { border-collapse: collapse; }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .88em; }
:focus-visible { outline: 3px solid var(--peel); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }
::selection { background: var(--lime); color: var(--grove-900); }

.icon { width: 1.25em; height: 1.25em; flex: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--lime); color: var(--grove-900); padding: 10px 16px; border-radius: var(--r-sm); font-weight: 700; }
.skip-link:focus { top: 12px; }
.fine { font-size: .86rem; color: var(--muted); }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--grove-800);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 44px; padding: 0 20px;
  border: 2px solid var(--btn-bd); border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 750; font-size: .95rem; line-height: 1; letter-spacing: .005em;
  text-decoration: none; white-space: nowrap;
  transition: transform .15s var(--ease), background-color .15s, box-shadow .15s, color .15s;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; transform: none; }
.btn .icon { width: 1.1em; height: 1.1em; }
.btn--peel { --btn-bg: var(--peel); --btn-fg: #fff; box-shadow: 0 3px 0 var(--peel-600); }
.btn--peel:hover { --btn-bg: #ff7a2b; }
.btn--peel:active { box-shadow: 0 1px 0 var(--peel-600); }
.btn--lime { --btn-bg: var(--lime); --btn-fg: var(--grove-900); box-shadow: 0 3px 0 var(--lime-600); }
.btn--lime:hover { --btn-bg: #d6f25a; }
.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--line { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--line:hover { --btn-bd: var(--ink); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .35); }
.btn--ghost:hover { --btn-bd: #fff; }
.btn--quiet { --btn-bg: transparent; --btn-fg: var(--ink-2); padding: 0 12px; }
.btn--quiet:hover { --btn-fg: var(--peel-600); }
.btn--sm { min-height: 36px; padding: 0 14px; font-size: .88rem; }
.btn--lg { min-height: 52px; padding: 0 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- small bits ---------- */

.badge {
  display: inline-flex; align-items: center; gap: .35em;
  padding: 3px 9px; border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 750; letter-spacing: .01em; white-space: nowrap;
  background: var(--paper-2); color: var(--ink-2);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge--ok { background: var(--ok-bg); color: var(--ok); }
.badge--wait { background: var(--wait-bg); color: var(--wait); }
.badge--stop { background: var(--stop-bg); color: var(--stop); }

.sticker {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 4px 9px 3px; border-radius: 6px;
  background: var(--lime); color: var(--grove-900);
  font-family: var(--display); font-stretch: 80%; font-weight: 900; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  transform: rotate(-4deg); box-shadow: 0 2px 0 rgba(0, 0, 0, .18);
}
.sticker--live { background: var(--berry); color: #fff; }
.sticker--live::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #fff; vertical-align: 1px; animation: pulse 1.6s infinite; }
.sticker--gold { background: var(--gold); }

.live-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--berry); font-weight: 800; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--berry); box-shadow: 0 0 0 0 rgba(227, 36, 92, .6); animation: ring 1.8s infinite; }
.live-dot--big::before { width: 14px; height: 14px; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(227, 36, 92, .55); } 70% { box-shadow: 0 0 0 8px rgba(227, 36, 92, 0); } 100% { box-shadow: 0 0 0 0 rgba(227, 36, 92, 0); } }
@keyframes pulse { 50% { opacity: .35; } }

.eyebrow { display: inline-flex; align-items: center; gap: 7px; margin: 0 0 10px; color: var(--peel-600); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow__icon { width: 16px; height: 16px; color: var(--gold); }

.chips { overflow-x: auto; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding: 2px var(--gutter); }
.chips::-webkit-scrollbar { display: none; }
.chips__list { display: flex; gap: 8px; list-style: none; }
.chips__list--static { flex-wrap: wrap; margin: 0 0 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--card);
  color: var(--ink); font-weight: 700; font-size: .92rem; text-decoration: none; white-space: nowrap;
  transition: border-color .15s, background-color .15s;
}
.chip:hover { border-color: var(--grove-700); color: var(--ink); }
.chip--active { background: var(--grove-800); border-color: var(--grove-800); color: #fff; }
.chip--active:hover { color: #fff; }
.chip__count { padding: 1px 7px; border-radius: var(--r-pill); background: var(--paper-2); color: var(--muted); font-size: .74rem; font-weight: 800; }
.chip--active .chip__count { background: var(--lime); color: var(--grove-900); }
.chip--static { cursor: default; }
.chip--static .icon { color: var(--grove-600); }
.chip--button { cursor: pointer; }

.empty { padding: 28px; border: 1.5px dashed var(--line-2); border-radius: var(--r); color: var(--muted); text-align: center; background: rgba(255, 253, 247, .6); }

.notice { margin: 0 0 20px; padding: 16px 18px; border-radius: var(--r); border-left: 5px solid var(--grove-600); background: var(--card); box-shadow: var(--shadow-1); }
.notice--ok { border-color: var(--ok); background: var(--ok-bg); }
.notice--wait { border-color: var(--gold); background: var(--wait-bg); }
.notice--warn { border-color: var(--peel); background: var(--peel-100); }
.notice p + p { margin-top: 10px; }

/* ---------- masthead ---------- */

.masthead { position: sticky; top: -36px; z-index: 40; background: var(--grove-800); color: #fff; }
.masthead__strip { background: var(--grove-950); font-size: .8rem; }
.masthead__strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: var(--wrap); height: 36px; margin: 0 auto; padding: 0 var(--gutter); }
.masthead__note { margin: 0; color: var(--grove-300); }
.masthead__note a { color: #fff; text-decoration: none; }
.masthead__note a:hover { color: var(--lime); }
.age-mark { display: inline-grid; place-items: center; min-width: 30px; height: 20px; margin-right: 6px; border: 1.5px solid var(--lime); border-radius: 5px; color: var(--lime); font-weight: 800; font-size: .7rem; }
.masthead__bar { display: flex; align-items: center; gap: 22px; max-width: var(--wrap); height: var(--bar-h); margin: 0 auto; padding: 0 var(--gutter); }

.odds-switch { display: inline-flex; padding: 2px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .08); }
.odds-switch__btn { min-height: 26px; padding: 0 10px; border: 0; border-radius: var(--r-pill); background: transparent; color: var(--grove-300); font-size: .76rem; font-weight: 700; }
.odds-switch__btn[aria-pressed="true"] { background: var(--lime); color: var(--grove-900); }
.odds-switch--light { background: var(--paper-2); }
.odds-switch--light .odds-switch__btn { color: var(--ink-2); min-height: 32px; padding: 0 14px; font-size: .85rem; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; flex: none; }
.brand:hover { color: #fff; }
.brand__mark { width: 40px; height: 40px; transition: transform .3s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-10deg) scale(1.05); }
.brand__word { display: flex; flex-direction: column; font-family: var(--display); font-weight: 900; font-stretch: 72%; font-size: 1.28rem; line-height: .86; letter-spacing: .01em; text-transform: uppercase; }
.brand__word span { color: var(--lime); }
.brand--small .brand__mark { width: 34px; height: 34px; }
.brand--small .brand__word { color: var(--ink); font-size: 1.1rem; }
.brand--small .brand__word span { color: var(--peel); }

.switcher { display: flex; padding: 4px; border-radius: var(--r-pill); background: var(--grove-900); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06); }
.switcher__option { display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 0 16px; border-radius: var(--r-pill); color: #D8E6DF; font-weight: 750; font-size: .92rem; text-decoration: none; transition: background-color .2s, color .2s; }
.switcher__option .icon { width: 18px; height: 18px; }
.switcher__option:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.switcher__option--on, .switcher__option--on:hover { background: var(--lime); color: var(--grove-900); }

.mainnav { flex: 1; min-width: 0; }
.mainnav__list { display: flex; gap: 2px; list-style: none; }
.mainnav__link { position: relative; display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 12px; border-radius: var(--r-sm); color: #E4EEE9; font-weight: 650; font-size: .94rem; text-decoration: none; white-space: nowrap; }
.mainnav__link:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.mainnav__link--active { color: #fff; }
.mainnav__link--active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 3px; border-radius: 3px; background: var(--peel); }
.mainnav__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--berry); animation: pulse 1.6s infinite; }

.masthead__account { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.masthead__menu { display: none; width: 44px; height: 44px; border: 0; border-radius: var(--r-sm); background: rgba(255, 255, 255, .08); color: #fff; place-items: center; }
.masthead__menu .icon { width: 24px; height: 24px; }
.balance-chip { display: flex; flex-direction: column; align-items: flex-end; padding: 0 6px; color: #fff; text-decoration: none; line-height: 1.1; }
.balance-chip:hover { color: var(--lime); }
.balance-chip__label { font-size: .68rem; color: var(--grove-300); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.balance-chip__value { font-weight: 800; font-variant-numeric: tabular-nums; }
.avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--peel); color: #fff; font-weight: 800; font-size: .85rem; text-decoration: none; }
.avatar:hover { color: #fff; background: var(--peel-600); }

/* ---------- layout ---------- */

.layout { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter) 64px; }
.layout--slip { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.page--home .layout--slip { display: block; }
.layout__main { min-width: 0; outline: none; }
.page--home .layout { padding-top: 0; }

.block { margin: 44px 0 0; }
.block--wide { max-width: var(--wrap); margin: 44px auto 0; padding: 0 var(--gutter); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head .eyebrow { margin-bottom: 6px; }
.section-head__title { font-family: var(--display); font-weight: 900; font-stretch: 78%; font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -.005em; text-transform: uppercase; }
.section-head__link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 750; font-size: .92rem; text-decoration: none; white-space: nowrap; }
.section-head__link .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.section-head__link:hover .icon { transform: translateX(3px); }

.columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.columns--two { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
.columns h3 { margin-bottom: 8px; font-size: 1.05rem; }

/* ---------- band (page header) ---------- */

.band { position: relative; margin: 0 calc(50% - 50vw) 28px; padding: 36px 0 44px; background: var(--grove-800); color: #fff; overflow: hidden; }
.band::after { content: ""; position: absolute; right: 8%; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(203, 234, 59, .22), rgba(203, 234, 59, 0) 62%); pointer-events: none; }
.band__inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.band__inner > * { max-width: 860px; }
.band .eyebrow { color: var(--lime); }
.band__title { margin-bottom: 12px; font-family: var(--display); font-weight: 900; font-stretch: 74%; font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: .95; text-transform: uppercase; }
.band__lede { max-width: 680px; margin: 0; color: #D6E4DD; font-size: 1.06rem; }
.band__lede a { color: var(--lime); }
.band--casino { background: linear-gradient(115deg, var(--grove-900), var(--grove-700)); }
.band--live { background: linear-gradient(115deg, #2A0E1B, #5B1331 60%, #7A1638); }
.band--live::after { background: radial-gradient(circle at 35% 35%, rgba(227, 36, 92, .4), rgba(227, 36, 92, 0) 62%); }
.band--live .eyebrow { color: #FFB3C8; }
.band--bingo { background: linear-gradient(115deg, #3B1F05, #7A3F07 55%, #B35A0B); }
.band--bingo::after { background: radial-gradient(circle at 35% 35%, rgba(255, 106, 19, .45), rgba(255, 106, 19, 0) 62%); }
.band--bingo .eyebrow { color: #FFD3B0; }
.band--safer { background: linear-gradient(115deg, #0C2F3A, #155265); }
.band--legal { background: var(--ink); }
.band--legal::after { display: none; }

.crumbs { margin-bottom: 14px; font-size: .84rem; }
.crumbs__list { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.crumbs__item { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.crumbs__item + .crumbs__item::before { content: "/"; opacity: .5; }
.crumbs__link { color: inherit; text-decoration: none; }
.crumbs__link:hover { text-decoration: underline; }
.band .crumbs__item, .game .crumbs__item, .gate .crumbs__item { color: rgba(255, 255, 255, .7); }
.band .crumbs__link:hover { color: #fff; }

/* ---------- home hero ---------- */

.hero { position: relative; margin: 0 calc(50% - 50vw); padding: 34px 0 56px; background: var(--grove-800); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 70vw; height: 70vw; border-radius: 50%; background: radial-gradient(circle, rgba(203, 234, 59, .16), rgba(203, 234, 59, 0) 60%); pointer-events: none; }
.hero__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.hero__intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 32px; align-items: end; margin-bottom: 28px; }
.hero__title { font-family: var(--display); font-weight: 900; font-stretch: 70%; font-size: clamp(2.5rem, 6vw, 5rem); line-height: .9; text-transform: uppercase; letter-spacing: -.01em; }
.hero__title em { font-style: normal; color: var(--lime); }
.hero__lede { margin: 0; color: #D1E1D9; font-size: 1.05rem; max-width: 520px; }
.hero__split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 18px; }

.door { position: relative; display: flex; min-height: 360px; border-radius: var(--r-lg); overflow: hidden; text-decoration: none; isolation: isolate; }
.door__body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; padding: 28px; }
.door__kicker { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.door__kicker .icon { width: 18px; height: 18px; }
.door__title { font-family: var(--display); font-weight: 900; font-stretch: 72%; font-size: clamp(2.2rem, 4.2vw, 3.5rem); line-height: .9; text-transform: uppercase; }
.door__title a { color: inherit; text-decoration: none; }
.door__text { max-width: 360px; font-size: 1rem; }
.door__btn { align-self: flex-start; margin-top: auto; }
.door--casino { background: var(--peel); color: #2A1405; }
.door--casino:hover { color: #2A1405; }
.door--casino .door__body { max-width: 58%; }
.door--casino .door__kicker { color: #fff; }
.door--casino .door__btn { --btn-bg: var(--grove-900); --btn-fg: #fff; box-shadow: 0 3px 0 #000; }
.door__facts { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .88rem; }
.door__facts strong { font-family: var(--display); font-stretch: 80%; font-weight: 900; font-size: 1.25rem; margin-right: 3px; }
.door__fan { position: absolute; right: -30px; top: 50%; width: 52%; height: 100%; transform: translateY(-50%); z-index: 1; }
.door__cover { position: absolute; width: 62%; border-radius: 16px; box-shadow: 0 18px 30px -14px rgba(0, 0, 0, .55); transition: transform .5s var(--ease); }
.door__cover--1 { top: 8%; right: 34%; transform: rotate(-12deg); }
.door__cover--2 { top: 22%; right: 12%; transform: rotate(4deg); z-index: 2; }
.door__cover--3 { top: 50%; right: 42%; transform: rotate(-3deg); width: 50%; }
.door--casino:hover .door__cover--1 { transform: rotate(-16deg) translate(-8px, -6px); }
.door--casino:hover .door__cover--2 { transform: rotate(7deg) translate(6px, -4px); }
.door--casino:hover .door__cover--3 { transform: rotate(-6deg) translate(-4px, 6px); }
.door--sports { background: var(--grove-950); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }
.door--sports::before { content: ""; position: absolute; inset: 0; z-index: 0; background:
  linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .06) 50%, transparent 50.2%),
  radial-gradient(circle at 50% 50%, transparent 64px, rgba(255, 255, 255, .06) 65px, transparent 67px); }
.door--sports .door__body { width: 100%; }
.door--sports .door__kicker { color: var(--lime); }
.door--sports .door__text { color: #CFE0D8; }

.spot { margin-top: 4px; padding: 14px; border-radius: var(--r); background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }
.spot__meta { margin-bottom: 4px; color: var(--grove-300); font-size: .82rem; }
.spot__match { margin-bottom: 10px; font-weight: 800; font-size: 1.1rem; }
.spot__match a { color: #fff; text-decoration: none; }
.spot__match a:hover { color: var(--lime); }
.spot__score { margin-left: 6px; padding: 2px 8px; border-radius: 6px; background: var(--lime); color: var(--grove-900); font-variant-numeric: tabular-nums; }
.spot__odds { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.spot__odds.event__odds--2 { grid-template-columns: repeat(2, 1fr); }
.spot .odds { background: rgba(255, 255, 255, .95); }

.home__sports { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.block--panel, .block--live { padding: 22px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.block--live { background: linear-gradient(180deg, #FFF6F8, var(--card) 140px); box-shadow: var(--shadow-1), inset 0 3px 0 var(--berry); }
.block--live .eyebrow { color: var(--berry); }

.next-off { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.next-off__title { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-weight: 800; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grove-700); }
.next-off__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; list-style: none; }
.next-off__list a { display: block; padding: 10px 12px; border-radius: var(--r-sm); background: var(--paper); color: var(--ink); text-decoration: none; font-size: .92rem; }
.next-off__list a:hover { background: var(--lime-100); }
.next-off__list strong { font-variant-numeric: tabular-nums; }
.next-off__list span { display: block; color: var(--muted); font-size: .8rem; }

.join { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 48px 0 0; padding: 32px; border-radius: var(--r-lg); background: var(--grove-800); color: #fff; }
.join__title { margin-bottom: 8px; font-family: var(--display); font-weight: 900; font-stretch: 76%; font-size: 2rem; text-transform: uppercase; }
.join__text p { margin: 0; color: #D1E1D9; max-width: 640px; }
.join__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.tracks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.track { padding: 22px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.track__title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.4rem; text-transform: uppercase; }
.track__title .icon { color: var(--peel); }
.track--sports .track__title .icon { color: var(--grove-600); }

.safer { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 20px 32px; margin: 48px 0 0; padding: 32px; border-radius: var(--r-lg); background: #0C2F3A; color: #fff; }
.safer .eyebrow { color: #9FE6F5; }
.safer__title { margin-bottom: 10px; font-family: var(--display); font-weight: 900; font-stretch: 76%; font-size: 2.2rem; text-transform: uppercase; }
.safer__main p { color: #C9DEE4; }
.safer__main .btn { margin-top: 16px; }
.safer__tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; list-style: none; }
.safer__tools li { display: flex; flex-direction: column; gap: 2px; padding: 16px; border-radius: var(--r); background: rgba(255, 255, 255, .06); }
.safer__tools .icon { width: 26px; height: 26px; margin-bottom: 8px; color: var(--lime); }
.safer__tools span { color: #A9C5CD; font-size: .88rem; }
.safer__line { grid-column: 1 / -1; margin: 0; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); color: #C9DEE4; font-size: .92rem; }
.safer__line a { color: #fff; font-weight: 750; }

.operator { margin: 48px 0 0; padding: 26px 28px; border-radius: var(--r-lg); border: 1.5px solid var(--line); background: var(--card); }
.operator__title { margin-bottom: 16px; font-size: 1.1rem; }
.operator__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 24px; margin-bottom: 14px; }
.operator__grid dt { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.operator__grid dd { font-weight: 650; }
.operator__note { margin: 0; color: var(--ink-2); font-size: .9rem; }

/* ---------- game cards ---------- */

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 22px 16px; list-style: none; }
.game-grid--compact { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }
.game-card { position: relative; display: flex; flex-direction: column; min-width: 0; }
.game-card__cover { position: relative; display: block; aspect-ratio: 1; border-radius: var(--r); overflow: hidden; background: var(--paper-2); box-shadow: 0 1px 0 rgba(0, 0, 0, .06); }
.game-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease), filter .3s; }
.game-card__body { display: flex; flex-direction: column; gap: 1px; height: 54px; padding: 9px 2px 0; min-width: 0; }
.game-card__name { overflow: hidden; color: var(--ink); font-weight: 750; font-size: .94rem; line-height: 1.25; text-decoration: none; white-space: nowrap; text-overflow: ellipsis; }
.game-card__name::after { content: ""; position: absolute; inset: 0 0 auto 0; aspect-ratio: 1; }
.game-card__name:hover { color: var(--ink); }
.game-card__provider { color: var(--muted); font-size: .8rem; }
.game-card__play {
  position: absolute; z-index: 3; right: 10px; bottom: 64px;
  display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px 0 11px;
  border-radius: var(--r-pill); background: var(--peel); color: #fff; font-weight: 800; font-size: .84rem; text-decoration: none;
  box-shadow: 0 3px 0 var(--peel-600), 0 10px 20px -8px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateY(8px) scale(.94); transition: opacity .2s, transform .25s var(--ease);
}
.game-card__play .icon { width: 15px; height: 15px; }
.game-card__play:hover { color: #fff; background: #ff7a2b; }
.game-card:hover .game-card__img, .game-card:focus-within .game-card__img { transform: scale(1.05); }
.game-card:hover .game-card__play, .game-card:focus-within .game-card__play { opacity: 1; transform: none; }
@media (hover: none) {
  .game-card__play { opacity: 1; transform: none; height: 32px; padding: 0 12px 0 9px; font-size: .8rem; right: 8px; }
}

.rail { position: relative; }
.rail__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 206px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; list-style: none; margin: 0 calc(var(--gutter) * -1); padding: 4px var(--gutter) 8px; scroll-padding: 0 var(--gutter); }
.rail__track::-webkit-scrollbar { display: none; }
.rail__track > li { scroll-snap-align: start; }
.rail__controls { position: absolute; top: -58px; right: 0; display: flex; gap: 6px; }
.section-head + .rail .rail__controls { top: -62px; }
.block .section-head:has(+ .rail) { padding-right: 96px; }
.rail__btn { display: grid; place-items: center; width: 40px; height: 40px; border: 1.5px solid var(--line-2); border-radius: 50%; background: var(--card); color: var(--ink); }
.rail__btn:hover { border-color: var(--ink); }
.rail__btn:disabled { opacity: .35; cursor: default; }

/* ---------- sportsbook ---------- */

.book { padding-top: 28px; }
.book__head { margin-bottom: 18px; }
.book__title { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-family: var(--display); font-weight: 900; font-stretch: 74%; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: .95; text-transform: uppercase; }
.book__icon { width: 44px; height: 44px; padding: 8px; border-radius: 12px; background: var(--lime); color: var(--grove-900); }
.book__lede { max-width: 720px; margin: 0; color: var(--ink-2); }

.sport-nav { position: sticky; top: calc(var(--bar-h) - 0px); z-index: 20; margin: 0 calc(var(--gutter) * -1) 8px; padding: 10px var(--gutter); background: rgba(246, 241, 230, .94); backdrop-filter: blur(8px); overflow-x: auto; scrollbar-width: none; }
.sport-nav::-webkit-scrollbar { display: none; }
.layout--slip .sport-nav { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
.sport-nav__list { display: flex; gap: 8px; list-style: none; }
.sport-nav__link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px 0 10px; border-radius: var(--r-pill); background: var(--card); box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink); font-weight: 700; font-size: .92rem; text-decoration: none; white-space: nowrap; }
.sport-nav__link .icon { width: 22px; height: 22px; color: var(--grove-600); }
.sport-nav__link:hover { color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--grove-700); }
.sport-nav__link--active, .sport-nav__link--active:hover { background: var(--grove-800); color: #fff; box-shadow: none; }
.sport-nav__link--active .icon { color: var(--lime); }
.sport-nav__link--live .icon { color: var(--berry); }

.comp { margin-bottom: 20px; }
.comp__title { margin: 0 0 8px; padding: 0 4px; color: var(--ink-2); font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.event-list { display: grid; gap: 8px; }
.event {
  display: grid; grid-template-columns: 118px minmax(0, 1fr) minmax(210px, 300px) auto; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line);
}
.block--panel .event, .block--live .event { background: var(--paper); box-shadow: none; }
.event--live { box-shadow: inset 3px 0 0 var(--berry), inset 0 0 0 1px var(--line); }
.event__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; font-size: .8rem; }
.event__time { font-weight: 750; font-variant-numeric: tabular-nums; }
.event__clock { font-weight: 800; font-variant-numeric: tabular-nums; }
.event__comp { overflow: hidden; color: var(--muted); white-space: nowrap; text-overflow: ellipsis; }
.event__teams { display: grid; gap: 3px; min-width: 0; color: var(--ink); text-decoration: none; }
.event__teams:hover .event__team-name { text-decoration: underline; text-decoration-color: var(--line-2); }
.event__team { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-weight: 700; }
.event__team-name { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.event__score { min-width: 26px; padding: 0 6px; border-radius: 5px; background: var(--grove-800); color: var(--lime); font-weight: 800; font-size: .9rem; text-align: center; font-variant-numeric: tabular-nums; }
.event__score-line { color: var(--grove-700); font-weight: 800; font-size: .88rem; }
.event__odds { display: grid; gap: 6px; grid-template-columns: repeat(3, 1fr); }
.event__odds--2 { grid-template-columns: repeat(2, 1fr); }
.event__more { display: inline-flex; align-items: center; gap: 2px; color: var(--muted); font-size: .8rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.event__more:hover { color: var(--peel-600); }
.event__more .icon { width: 14px; height: 14px; }
.block--panel .event, .block--live .event { grid-template-columns: 96px minmax(0, 1fr) minmax(150px, 210px); }
.block--panel .event__more, .block--live .event__more { display: none; }

.odds {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  min-height: 46px; padding: 4px 6px; border: 0; border-radius: var(--r-sm);
  background: #fff; box-shadow: inset 0 0 0 1.5px var(--line), 0 2px 0 var(--line);
  color: var(--ink); line-height: 1.1; transition: background-color .15s, box-shadow .15s, transform .12s;
}
.odds:hover { box-shadow: inset 0 0 0 1.5px var(--grove-700), 0 2px 0 var(--grove-700); }
.odds:active { transform: translateY(1px); }
.odds__label { max-width: 100%; overflow: hidden; color: var(--muted); font-size: .7rem; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; }
.odds__price { font-weight: 850; font-size: .98rem; font-variant-numeric: tabular-nums; }
.odds[aria-pressed="true"] { background: var(--lime); box-shadow: inset 0 0 0 1.5px var(--lime-600), 0 2px 0 var(--lime-600); }
.odds[aria-pressed="true"] .odds__label { color: var(--grove-800); }
.odds--up .odds__price::after, .odds--down .odds__price::after { content: ""; display: inline-block; margin-left: 4px; border: 5px solid transparent; vertical-align: 2px; }
.odds--up .odds__price::after { border-bottom-color: var(--ok); border-top-width: 0; }
.odds--down .odds__price::after { border-top-color: var(--stop); border-bottom-width: 0; }
.odds--flash { animation: flash 1.2s var(--ease); }
@keyframes flash { 0% { background: var(--wait-bg); } 100% { background: #fff; } }
.odds:disabled { opacity: .5; cursor: not-allowed; }

.outright { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.outright .odds { flex-direction: row; justify-content: space-between; gap: 10px; min-height: 48px; padding: 0 14px; }
.outright .odds__label { color: var(--ink); font-size: .9rem; }

.race-list { display: grid; gap: 8px; }
.race { border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line); }
.race__summary { display: flex; align-items: center; gap: 14px; padding: 14px 16px; cursor: pointer; list-style: none; }
.race__summary::-webkit-details-marker { display: none; }
.race__time { min-width: 62px; padding: 6px 0; border-radius: var(--r-sm); background: var(--grove-800); color: var(--lime); font-weight: 850; text-align: center; font-variant-numeric: tabular-nums; }
.race__title { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.race__name { overflow: hidden; font-weight: 750; white-space: nowrap; text-overflow: ellipsis; }
.race__info { color: var(--muted); font-size: .84rem; }
.race__chev { width: 20px; height: 20px; color: var(--muted); transition: transform .2s; }
.race[open] .race__chev { transform: rotate(180deg); }
.race__body { padding: 0 16px 16px; }
.race__going, .race__note { color: var(--muted); font-size: .86rem; }
.runners { width: 100%; font-size: .92rem; }
.runners th, .runners td { padding: 8px 6px; border-top: 1px solid var(--line); text-align: left; vertical-align: middle; }
.runners thead th { border-top: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.runners__no { white-space: nowrap; font-weight: 750; }
.runners__no span { color: var(--muted); font-weight: 500; font-size: .8rem; }
.runners__horse { font-weight: 750; }
.runners__horse span { display: block; color: var(--muted); font-weight: 500; font-size: .8rem; }
.runners__form { font-family: ui-monospace, Menlo, monospace; font-size: .84rem; letter-spacing: .06em; }
.runners__odds { width: 92px; text-align: right; }
.runners__odds .odds { width: 84px; min-height: 40px; margin-left: auto; }
.placings { list-style: none; display: grid; gap: 6px; margin-bottom: 10px; }
.placings__row { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm); background: var(--paper); }
.placings__pos { font-weight: 850; color: var(--peel-600); }
.placings__sp { color: var(--muted); font-variant-numeric: tabular-nums; }

.meeting { margin: 28px 0; }
.meeting__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.meeting__title { font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.7rem; text-transform: uppercase; }
.meeting__info { margin: 0; color: var(--muted); }

.fixture { margin: 0 0 18px; padding: 24px 28px 28px; border-radius: var(--r-lg); background: var(--grove-800); color: #fff; }
.fixture .crumbs__item { color: rgba(255, 255, 255, .7); }
.fixture__comp { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--lime); font-weight: 750; font-size: .9rem; }
.fixture__title { font-family: var(--display); font-weight: 900; font-stretch: 74%; font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: .95; text-transform: uppercase; }
.fixture__title--vs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.fixture__title--vs > span:last-child { text-align: right; }
.fixture__v { padding: 6px 14px; border-radius: var(--r-sm); background: rgba(255, 255, 255, .1); color: var(--lime); font-size: .6em; font-variant-numeric: tabular-nums; }
.fixture__when { margin: 12px 0 0; color: #D1E1D9; }
.fixture--live { background: linear-gradient(115deg, var(--grove-900), #3A1225); }

.markets { display: grid; gap: 12px; }
.market { padding: 16px; border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line); }
.market__name { margin-bottom: 12px; font-size: 1rem; }
.market__grid { display: grid; gap: 8px; }
.market__grid--2 { grid-template-columns: repeat(2, 1fr); }
.market__grid--3 { grid-template-columns: repeat(3, 1fr); }
.market__grid--list { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.market__grid .odds { flex-direction: row; justify-content: space-between; gap: 10px; padding: 0 14px; min-height: 50px; }
.market__grid .odds__label { color: var(--ink); font-size: .9rem; white-space: normal; text-align: left; }

.refresh { margin: 8px 0 12px; color: var(--muted); font-size: .84rem; }
.refresh time { font-variant-numeric: tabular-nums; }

/* ---------- bingo ---------- */

.rooms { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; list-style: none; }
.rooms--full { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.room__link { position: relative; display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 18px 18px 16px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); color: var(--ink); text-decoration: none; overflow: hidden; transition: transform .2s var(--ease); }
.room__link:hover { color: var(--ink); transform: translateY(-3px); }
.room__ball { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 8px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFB27A, var(--peel) 55%, var(--peel-600)); color: #fff; font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.5rem; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12); }
.room__ball::after { content: ""; position: absolute; }
.room:nth-child(2n) .room__ball { background: radial-gradient(circle at 35% 30%, #E9FF8A, var(--lime) 55%, var(--lime-600)); color: var(--grove-900); }
.room:nth-child(3n) .room__ball { background: radial-gradient(circle at 35% 30%, #5E9C84, var(--grove-700) 55%, var(--grove-900)); }
.room__name { font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.35rem; text-transform: uppercase; line-height: 1; }
.room__info { color: var(--muted); font-size: .86rem; }
.room__row { display: flex; gap: 14px; flex-wrap: wrap; font-size: .88rem; }
.room__next { margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--line-2); font-size: .88rem; color: var(--ink-2); }
.room__next time { font-weight: 850; color: var(--grove-700); font-variant-numeric: tabular-nums; }
.room__next--closed { color: var(--muted); }
.room--closed .room__link { opacity: .7; }

.schedule { list-style: none; display: grid; gap: 6px; }
.schedule__row { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--r-sm); background: var(--paper); }
.schedule__row time { font-weight: 850; font-variant-numeric: tabular-nums; }
.schedule__row--next { background: var(--lime-100); box-shadow: inset 0 0 0 1.5px var(--lime-600); }
.schedule__count { font-weight: 800; color: var(--grove-700); font-variant-numeric: tabular-nums; }

/* ---------- lobby, search and filters ---------- */

.lobby { padding-bottom: 8px; }
.lobby__bar { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.lobby__bar .chips { flex: 1; min-width: 0; margin: 0; padding: 2px 0; }
.lobby__count { margin: 0 0 14px; color: var(--muted); font-size: .9rem; font-weight: 650; }
.lobby__layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 28px; align-items: start; }
.lobby__filter-toggle { display: none; }
.lobby__about { margin: 56px 0 0; padding: 28px; border-radius: var(--r-lg); background: var(--paper-2); }
.lobby__about > h2 { margin-bottom: 18px; font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.6rem; text-transform: uppercase; }
.lobby__about .fine { margin: 20px 0 0; }

.search { position: relative; display: flex; align-items: center; flex: none; width: 300px; }
.search--wide { flex: 1; width: auto; max-width: 560px; }
.search--hero { width: 100%; max-width: 640px; margin: 0 0 28px; }
.search__icon { position: absolute; left: 14px; width: 20px; height: 20px; color: var(--muted); pointer-events: none; }
.search__input { width: 100%; min-height: 46px; padding: 0 16px 0 44px; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--card); outline: none; transition: border-color .15s, box-shadow .15s; }
.search__input:focus { border-color: var(--grove-700); box-shadow: 0 0 0 4px rgba(203, 234, 59, .45); }
.search--hero .search__input { min-height: 56px; font-size: 1.05rem; }

.filters { position: sticky; top: calc(var(--bar-h) + 16px); display: grid; gap: 18px; padding: 18px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); max-height: calc(100vh - var(--bar-h) - 32px); overflow-y: auto; }
.filters__group { margin: 0; padding: 0; border: 0; min-width: 0; }
.filters__legend { display: block; margin-bottom: 10px; padding: 0; color: var(--muted); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.filters__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filters__list { display: grid; gap: 4px; list-style: none; }

.pick { position: relative; display: inline-flex; }
.pick input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pick span { display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 0 12px; border-radius: var(--r-pill); background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 700; font-size: .86rem; }
.pick small { color: var(--muted); font-weight: 700; }
.pick input:checked + span { background: var(--grove-800); color: #fff; box-shadow: none; }
.pick input:checked + span small { color: var(--lime); }
.pick input:focus-visible + span { outline: 3px solid var(--peel); outline-offset: 2px; }

.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .94rem; line-height: 1.4; }
.check input { flex: none; width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--grove-700); }
.check small { color: var(--muted); }
.check--small { font-size: .84rem; }
.filters .check { padding: 5px 0; }

.select { width: 100%; min-height: 46px; padding: 0 40px 0 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23463F34' stroke-width='2.2' stroke-linecap='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center / 18px; appearance: none; }
.select:focus { outline: none; border-color: var(--grove-700); box-shadow: 0 0 0 4px rgba(203, 234, 59, .45); }

/* ---------- live casino ---------- */

.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 16px; }
.live-table { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 18px; padding: 14px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.live-table__cover { position: relative; display: block; border-radius: var(--r); overflow: hidden; align-self: start; }
.live-table__cover img { aspect-ratio: 1; object-fit: cover; }
.live-table__body { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 4px 4px 4px 0; }
.live-table__name { font-size: 1.2rem; }
.live-table__name a { color: var(--ink); text-decoration: none; }
.live-table__name a:hover { color: var(--peel-600); }
.live-table__provider { margin: 0; color: var(--muted); font-size: .84rem; }
.live-table__text { margin: 4px 0 10px; color: var(--ink-2); font-size: .92rem; }
.live-table__body .btn { margin-top: auto; }

/* ---------- game page ---------- */

.game { position: relative; margin: 0 calc(50% - 50vw); padding: 26px 0 48px; background: var(--grove-900); color: #fff; overflow: hidden; }
.game__backdrop { position: absolute; inset: -40px; background-size: cover; background-position: center; filter: blur(48px) saturate(1.3); opacity: .45; transform: scale(1.1); }
.game::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 42, 32, .55), rgba(10, 42, 32, .92)); }
.game__inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.game__hero { display: grid; grid-template-columns: minmax(220px, 360px) minmax(0, 1fr); gap: 40px; align-items: center; margin-top: 12px; }
.game__cover { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .7); transform: rotate(-2deg); }
.game__cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.game__cover .sticker { top: 14px; left: 14px; font-size: .85rem; }
.game__provider { margin-bottom: 8px; color: var(--lime); font-weight: 750; letter-spacing: .04em; }
.game__title { margin-bottom: 16px; font-family: var(--display); font-weight: 900; font-stretch: 72%; font-size: clamp(2.3rem, 5.4vw, 4.4rem); line-height: .92; text-transform: uppercase; }
.game__blurb { max-width: 620px; color: #E1ECE6; font-size: 1.1rem; }
.game__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 0; list-style: none; }
.game__tags li { padding: 4px 11px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .1); font-size: .84rem; font-weight: 700; }
.game__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.game__play { min-width: 180px; font-size: 1.15rem; }
.game__play .icon { width: 22px; height: 22px; }
.game__age { margin: 16px 0 0; color: var(--grove-300); font-size: .86rem; }
.game__age a { color: #fff; }

.detail { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; margin-top: 28px; }
.detail__main { display: grid; gap: 16px; min-width: 0; }
.detail__side { display: grid; gap: 16px; }

.card { padding: 22px 24px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.card + .card { margin-top: 16px; }
.detail__main .card + .card, .detail__side .card + .card { margin-top: 0; }
.card--sticky { position: sticky; top: calc(var(--bar-h) + 16px); }
.card--note { background: var(--paper-2); box-shadow: none; }
.card--warm { box-shadow: var(--shadow-1), inset 4px 0 0 var(--peel); }
.card__title { margin-bottom: 14px; font-family: var(--display); font-weight: 900; font-stretch: 82%; font-size: 1.45rem; text-transform: uppercase; }
.card__title--small { font-family: var(--text); font-stretch: 100%; font-size: 1.05rem; font-weight: 800; text-transform: none; }
.card > p { color: var(--ink-2); }

.facts { display: grid; gap: 0; margin-bottom: 16px; }
.facts > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.facts > div:last-child { border-bottom: 0; }
.facts dt { color: var(--muted); font-size: .9rem; }
.facts dd { font-weight: 700; text-align: right; }
.facts--wide > div { justify-content: flex-start; }
.facts--wide dt { width: 180px; flex: none; }
.facts--wide dd { text-align: left; }
.facts--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }

.ticks { display: grid; gap: 8px; list-style: none; margin: 0 0 12px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230A2A20' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='m6 12.5 4 4L18 8'/%3E%3C/svg%3E") no-repeat center / 12px; }
.ticks--light li { color: #D6E4DD; }

/* ---------- play gate ---------- */

.gate { padding: 28px 0 0; }
.gate__stage { position: relative; display: flex; align-items: center; gap: 24px; margin: 0 0 18px; padding: 28px; border-radius: var(--r-lg); background: var(--grove-900); color: #fff; overflow: hidden; }
.gate__art { width: 120px; border-radius: var(--r); box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .6); }
.gate__provider { margin-bottom: 6px; color: var(--lime); font-weight: 750; font-size: .9rem; }
.gate__title { font-family: var(--display); font-weight: 900; font-stretch: 74%; font-size: clamp(1.8rem, 4vw, 3rem); line-height: .95; text-transform: uppercase; }
.gate__ball { display: grid; place-items: center; flex: none; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFB27A, var(--peel) 55%, var(--peel-600)); font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 2.6rem; }
.gate__panels { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.gate__panel { padding: 26px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.gate__panel--join { background: var(--grove-800); color: #fff; }
.gate__panel--join p { color: #D6E4DD; }
.gate__panel--join .fine { color: var(--grove-300); margin-top: 12px; }
.gate__panel--join .steps__title { color: #fff; }
.gate__panel--join .steps__text { color: #C3D6CD; }
.gate__panel--join .steps { margin: 18px 0 22px; }
.gate__panel-title { margin-bottom: 8px; font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.6rem; text-transform: uppercase; }

.launch { display: grid; justify-items: start; gap: 16px; max-width: 720px; padding: 26px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.launch__checks { display: grid; gap: 8px; width: 100%; list-style: none; }
.launch__check { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--paper); }
.launch__check span { display: flex; flex-wrap: wrap; gap: 4px 10px; }
.launch__check .icon { width: 24px; height: 24px; padding: 4px; border-radius: 50%; }
.launch__check--ok .icon { background: var(--ok-bg); color: var(--ok); }
.launch__check--todo .icon { background: var(--wait-bg); color: var(--wait); }
.launch__alert { width: 100%; padding: 14px 16px; border-radius: var(--r-sm); background: var(--wait-bg); color: var(--ink); }

/* ---------- reading pages ---------- */

.reading { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 40px; align-items: start; }
.reading--wide { grid-template-columns: minmax(0, 860px); }
.reading__body { min-width: 0; max-width: 820px; }
.toc { position: sticky; top: calc(var(--bar-h) + 20px); padding: 16px 0; }
.toc__title { margin-bottom: 10px; color: var(--muted); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.toc__list { display: grid; gap: 2px; list-style: none; counter-reset: none; }
.toc__link { display: block; padding: 7px 12px; border-left: 3px solid var(--line); color: var(--ink-2); font-size: .92rem; font-weight: 600; text-decoration: none; }
.toc__link:hover, .toc__link--active { border-color: var(--peel); color: var(--ink); background: rgba(255, 106, 19, .06); }

.prose { color: var(--ink-2); font-size: 1.02rem; }
.prose section { margin-bottom: 36px; scroll-margin-top: calc(var(--bar-h) + 20px); }
.prose h2 { margin: 0 0 14px; color: var(--ink); font-family: var(--display); font-weight: 900; font-stretch: 82%; font-size: 1.8rem; text-transform: uppercase; }
.prose h3 { margin: 22px 0 8px; color: var(--ink); font-size: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.3em; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--peel); }
.prose strong { color: var(--ink); }
.prose .lead { padding: 20px 22px; border-radius: var(--r); background: var(--card); box-shadow: var(--shadow-1); color: var(--ink); font-size: 1.1rem; }
.prose--legal { font-size: .98rem; }
.prose--legal h2 { font-size: 1.35rem; }
.prose--legal section { padding-bottom: 20px; border-bottom: 1px solid var(--line); }

.steps { display: grid; gap: 10px; list-style: none; }
.steps__item { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; align-items: start; }
.steps__num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--grove-800); color: var(--lime); font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.15rem; }
.steps__body { display: flex; flex-direction: column; gap: 2px; padding-top: 8px; }
.steps__title { color: var(--ink); font-size: 1.02rem; }
.steps__text { color: var(--ink-2); }
.steps--compact { display: flex; flex-wrap: wrap; gap: 8px; }
.steps--compact .steps__item { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 8px; border-radius: var(--r-pill); background: var(--paper); }
.steps--compact .steps__item:not(:last-child)::after { content: "→"; margin-left: 4px; color: var(--line-2); font-weight: 800; }
.steps--compact .steps__num { width: 28px; height: 28px; font-size: .9rem; }
.steps--compact .steps__body { padding: 0; }
.steps--compact .steps__title { font-size: .95rem; white-space: nowrap; }
.track--sports .steps--compact .steps__num { background: var(--lime); color: var(--grove-900); }
.steps--light .steps__num { background: var(--lime); color: var(--grove-900); }
.steps--light .steps__title { color: #fff; }
.steps--light .steps__text { color: #C3D6CD; }

.route { margin-bottom: 40px; padding: 28px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); scroll-margin-top: calc(var(--bar-h) + 20px); }
.route__title { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-family: var(--display); font-weight: 900; font-stretch: 78%; font-size: 1.9rem; text-transform: uppercase; }
.route__title .icon { width: 40px; height: 40px; padding: 8px; border-radius: 12px; background: var(--peel); color: #fff; }
.route--sports .route__title .icon { background: var(--lime); color: var(--grove-900); }
.route .steps { gap: 18px; }
.route--sports .steps__num { background: var(--lime); color: var(--grove-900); }

.table-wrap { overflow-x: auto; margin: 0 0 1em; border-radius: var(--r); box-shadow: inset 0 0 0 1px var(--line); background: var(--card); }
.table { width: 100%; font-size: .93rem; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table thead th { background: var(--paper-2); color: var(--ink-2); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.table tbody tr:last-child > * { border-bottom: 0; }
.table__num { text-align: right !important; font-variant-numeric: tabular-nums; white-space: nowrap; }
.table--compact th, .table--compact td { padding: 9px 12px; }
.table__row--new { background: var(--lime-100); }
.table__device { color: var(--muted); font-size: .84rem; }
.pay-method { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.pay-method img { width: 52px; height: auto; }

.status-list { display: grid; gap: 10px; }
.status-list > div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 14px; align-items: start; padding: 14px; border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line); }

.helplines__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.helpline { padding: 18px; border-radius: var(--r); background: var(--card); box-shadow: var(--shadow-1); }
.helpline h3 { margin: 0 0 6px; font-size: 1rem; }
.helpline p { margin: 0 0 6px; font-size: .92rem; }
.helpline__num a { font-weight: 800; font-size: 1.05rem; }

/* ---------- help centre ---------- */

.help { padding-bottom: 16px; }
.topics { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; list-style: none; }
.topic__link { display: grid; grid-template-columns: 48px minmax(0, 1fr); grid-template-rows: auto auto auto; gap: 2px 14px; height: 100%; padding: 18px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); color: var(--ink); text-decoration: none; transition: transform .2s var(--ease); }
.topic__link:hover { color: var(--ink); transform: translateY(-2px); }
.topic__icon { grid-row: span 3; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--lime-100); color: var(--grove-700); }
.topic__icon .icon { width: 24px; height: 24px; }
.topic__title { font-weight: 800; font-size: 1.08rem; }
.topic__text { color: var(--ink-2); font-size: .9rem; }
.topic__count { color: var(--peel-600); font-size: .8rem; font-weight: 750; }
.help__results { display: grid; gap: 8px; }
.help__contact { margin-top: 28px; padding: 18px 20px; border-radius: var(--r); background: var(--paper-2); }

.faq { border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line); }
.faq__q { display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; cursor: pointer; font-weight: 750; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__topic { flex: none; padding: 2px 8px; border-radius: var(--r-pill); background: var(--paper-2); color: var(--muted); font-size: .74rem; font-weight: 750; align-self: center; }
.faq__a { padding: 0 18px 16px; color: var(--ink-2); }
.faq--open { margin-bottom: 12px; padding: 4px 0; }
.faq--open .faq__q { cursor: default; font-size: 1.1rem; padding-bottom: 8px; }

/* ---------- legal ---------- */

.legal-hub { padding-bottom: 12px; }
.docs { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-bottom: 22px; list-style: none; }
.doc__link { display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 22px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); color: var(--ink); text-decoration: none; }
.doc__link:hover { color: var(--ink); box-shadow: var(--shadow-1), inset 0 0 0 2px var(--peel); }
.doc__icon { width: 30px; height: 30px; color: var(--peel); }
.doc__title { font-family: var(--display); font-weight: 900; font-stretch: 82%; font-size: 1.4rem; text-transform: uppercase; }
.doc__text { color: var(--ink-2); font-size: .94rem; }
.doc__date { margin-top: auto; color: var(--muted); font-size: .8rem; }
.legal-docs { margin: -8px 0 26px; }
.doc-nav { overflow-x: auto; scrollbar-width: none; }
.doc-nav__list { display: flex; gap: 6px; list-style: none; }
.doc-nav__link { display: inline-flex; min-height: 38px; align-items: center; padding: 0 14px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink); font-weight: 700; font-size: .9rem; text-decoration: none; white-space: nowrap; }
.doc-nav__link--active { background: var(--ink); color: #fff; box-shadow: none; }
.doc-nav__link--active:hover { color: #fff; }

/* ---------- contact ---------- */

.contact { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 22px; align-items: start; }
.contact__side { display: grid; gap: 16px; position: sticky; top: calc(var(--bar-h) + 16px); }
.contact__side .card + .card { margin-top: 0; }
.contact__main { display: grid; gap: 28px; min-width: 0; }
.address { font-style: normal; line-height: 1.6; }
.complaint { padding: 28px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); scroll-margin-top: calc(var(--bar-h) + 20px); }
.complaint .steps { margin: 18px 0 26px; gap: 16px; }
.ibas { display: flex; align-items: center; gap: 16px; padding: 14px; border-radius: var(--r); background: var(--paper); }

.lost { max-width: 620px; margin: 0 auto; padding: 64px 0 24px; text-align: center; }
.lost__code { margin: 0; font-family: var(--display); font-weight: 900; font-stretch: 60%; font-size: 8rem; line-height: .9; color: var(--peel); }
.lost__title { margin: 8px 0 12px; font-family: var(--display); font-weight: 900; font-stretch: 78%; font-size: 2.2rem; text-transform: uppercase; }
.lost__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }

/* ---------- forms ---------- */

.form { display: grid; gap: 16px; }
.form__set { display: grid; gap: 14px; margin: 0; padding: 0 0 18px; border: 0; border-bottom: 1px solid var(--line); min-width: 0; }
.form__legend { margin-bottom: 4px; padding: 0; font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--peel-600); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form__row--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form__row--top { align-items: start; }
.form__aside { margin: -6px 0 0; font-size: .9rem; }
.form__alert { padding: 12px 14px; border-radius: var(--r-sm); background: var(--stop-bg); color: var(--stop); font-weight: 600; }
.form__alert--ok { background: var(--ok-bg); color: var(--ok); }
.form__resend { padding: 14px; border-radius: var(--r-sm); background: var(--wait-bg); }
.form__resend p { margin-bottom: 10px; font-size: .92rem; }
.form--inline { margin-top: 16px; }

.field { display: grid; gap: 6px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field__label { font-weight: 750; font-size: .92rem; padding: 0; }
.field__optional { color: var(--muted); font-weight: 500; }
.field__hint { margin: -2px 0 2px; color: var(--muted); font-size: .84rem; }
.field__input { width: 100%; min-height: 48px; padding: 0 14px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; }
.field__input:focus { border-color: var(--grove-700); box-shadow: 0 0 0 4px rgba(203, 234, 59, .45); }
.field__input--area { min-height: 140px; padding: 12px 14px; resize: vertical; }
.field__input--short { max-width: 140px; }
.field--short .field__input { max-width: 220px; }
.field--error .field__input, .field--error .select { border-color: var(--stop); background: #FFF8F7; }
.field__error { margin: 0; color: var(--stop); font-size: .86rem; font-weight: 650; }
.field__pw { position: relative; display: block; }
.field__pw .field__input { padding-right: 50px; }
.field__reveal { position: absolute; right: 4px; top: 50%; display: grid; place-items: center; width: 42px; height: 40px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); transform: translateY(-50%); }
.field__reveal[aria-pressed="true"] { color: var(--grove-700); }

.strength { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: -6px; }
.strength span { height: 4px; border-radius: 4px; background: var(--line); transition: background-color .2s; }
.strength[data-level="1"] span:nth-child(-n+1) { background: var(--stop); }
.strength[data-level="2"] span:nth-child(-n+2) { background: var(--gold); }
.strength[data-level="3"] span:nth-child(-n+3) { background: var(--lime-600); }
.strength[data-level="4"] span { background: var(--ok); }

.money-input { display: flex; align-items: center; max-width: 260px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: #fff; }
.money-input:focus-within { border-color: var(--grove-700); box-shadow: 0 0 0 4px rgba(203, 234, 59, .45); }
.money-input span { padding: 0 0 0 14px; color: var(--muted); font-weight: 800; }
.money-input .field__input { border: 0; box-shadow: none; padding-left: 6px; font-weight: 750; font-size: 1.1rem; }
.quick-amounts { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }

.radio-card { position: relative; display: block; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card__body { display: grid; grid-template-columns: 64px 1fr; grid-template-rows: auto auto; gap: 0 12px; align-items: center; padding: 14px; border-radius: var(--r); background: #fff; box-shadow: inset 0 0 0 1.5px var(--line-2); cursor: pointer; }
.radio-card__body img { grid-row: span 2; width: 56px; }
.radio-card__body small { color: var(--muted); }
.radio-card input:checked + .radio-card__body { box-shadow: inset 0 0 0 2px var(--grove-700); background: var(--lime-100); }
.radio-card input:focus-visible + .radio-card__body { outline: 3px solid var(--peel); outline-offset: 2px; }

.upload { display: grid; gap: 12px; padding: 16px; border-radius: var(--r); background: var(--paper); }
.upload__title { margin: 0; font-weight: 800; }
.dropzone { position: relative; display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 10px 14px; border: 2px dashed var(--line-2); border-radius: var(--r-sm); background: #fff; color: var(--ink-2); font-size: .9rem; cursor: pointer; }
.dropzone:hover, .dropzone:focus-within { border-color: var(--grove-700); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone .icon { width: 24px; height: 24px; color: var(--peel); }
.dropzone--filled { border-style: solid; border-color: var(--ok); background: var(--ok-bg); color: var(--ok); font-weight: 700; }

.toggle { position: relative; flex: none; width: 46px; height: 26px; margin: 0; border-radius: 26px; background: var(--line-2); appearance: none; cursor: pointer; transition: background-color .2s; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .2s var(--ease); }
.toggle:checked { background: var(--grove-700); }
.toggle:checked::after { transform: translateX(20px); }

/* ---------- auth ---------- */

.auth { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 0; max-width: 980px; margin: 36px auto 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); background: var(--card); }
.auth--wide { max-width: 1120px; }
.auth--single { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
.auth__card { padding: clamp(24px, 4vw, 44px); }
.auth__card--center { text-align: center; }
.auth__card--center .progress { justify-content: center; }
.auth__title { margin-bottom: 8px; font-family: var(--display); font-weight: 900; font-stretch: 76%; font-size: clamp(2rem, 4vw, 2.8rem); line-height: .95; text-transform: uppercase; }
.auth__lede { color: var(--ink-2); margin-bottom: 22px; }
.auth__switch { margin: 22px 0 0; text-align: center; color: var(--ink-2); }
.auth__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; margin: 10px 0 16px; border-radius: 50%; background: var(--lime-100); color: var(--grove-700); }
.auth__icon .icon { width: 34px; height: 34px; }
.auth__icon--ok { background: var(--ok-bg); color: var(--ok); }
.auth__icon--warn { background: var(--wait-bg); color: var(--wait); }
.auth__aside { position: relative; display: flex; flex-direction: column; gap: 18px; padding: 40px 32px; background: var(--grove-800); color: #fff; overflow: hidden; }
.auth__aside::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 106, 19, .35), rgba(255, 106, 19, 0) 65%); }
.auth__logo { width: 64px; height: 64px; }
.auth__aside-title { margin: 0; font-family: var(--display); font-weight: 900; font-stretch: 78%; font-size: 1.8rem; line-height: 1; text-transform: uppercase; }
.auth__age { margin-top: auto; color: var(--lime); font-weight: 800; }

.progress { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 24px; list-style: none; counter-reset: step; }
.progress__step { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px 5px 6px; border-radius: var(--r-pill); background: var(--paper-2); color: var(--muted); font-size: .8rem; font-weight: 750; counter-increment: step; }
.progress__step::before { content: counter(step); display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #fff; font-size: .72rem; }
.progress__step--on { background: var(--grove-800); color: #fff; }
.progress__step--on::before { background: var(--lime); color: var(--grove-900); }
.progress__step--done { background: var(--ok-bg); color: var(--ok); }
.progress__step--done::before { content: "✓"; background: var(--ok); color: #fff; }

/* ---------- my account ---------- */

.account { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 28px; align-items: start; padding-top: 28px; }
.account__side { position: sticky; top: calc(var(--bar-h) + 16px); display: grid; gap: 12px; }
.account__main { min-width: 0; }
.account__head { margin-bottom: 20px; }
.account__title { margin-bottom: 6px; font-family: var(--display); font-weight: 900; font-stretch: 76%; font-size: clamp(2rem, 4vw, 2.8rem); line-height: .95; text-transform: uppercase; }
.account__lede { margin: 0; color: var(--ink-2); }
.account-card { padding: 18px; border-radius: var(--r-lg); background: var(--grove-800); color: #fff; }
.account-card__hello { margin: 0; color: var(--grove-300); font-size: .78rem; }
.account-card__name { margin: 0; font-weight: 800; font-size: 1.1rem; }
.account-card__email { margin: 0 0 12px; overflow: hidden; color: #C7D9D0; font-size: .84rem; text-overflow: ellipsis; }
.account-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.account-card__stats > div { padding: 10px; border-radius: var(--r-sm); background: rgba(255, 255, 255, .07); }
.account-card__stats dt { color: var(--grove-300); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.account-card__stats dd { font-weight: 850; font-variant-numeric: tabular-nums; }
.account-card .badge { margin-top: 2px; }
.account-nav { padding: 8px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); }
.account-nav__list { display: grid; gap: 1px; list-style: none; }
.account-nav__link { display: flex; align-items: center; gap: 10px; min-height: 40px; padding: 0 10px; border-radius: var(--r-sm); color: var(--ink-2); font-weight: 650; font-size: .93rem; text-decoration: none; }
.account-nav__link .icon { width: 19px; height: 19px; color: var(--muted); }
.account-nav__link:hover { background: var(--paper); color: var(--ink); }
.account-nav__link--active, .account-nav__link--active:hover { background: var(--lime-100); color: var(--grove-900); font-weight: 800; }
.account-nav__link--active .icon { color: var(--grove-700); }
.account-nav__logout { width: 100%; margin-top: 6px; justify-content: flex-start; }

.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
.tiles--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tile { display: flex; flex-direction: column; gap: 4px; padding: 18px; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); color: var(--ink); text-decoration: none; }
a.tile:hover { color: var(--ink); box-shadow: var(--shadow-1), inset 0 0 0 2px var(--lime-600); }
.tile__label { color: var(--muted); font-size: .8rem; font-weight: 700; }
.tile__value { font-family: var(--display); font-weight: 900; font-stretch: 84%; font-size: 1.7rem; font-variant-numeric: tabular-nums; }
.tile__value--badge { font-family: var(--text); font-size: 1rem; padding: 6px 0; }
.tile__link { display: inline-flex; align-items: center; gap: 4px; margin-top: auto; color: var(--grove-700); font-size: .84rem; font-weight: 750; }
.tile__link .icon { width: 14px; height: 14px; }

.mini-list { display: grid; list-style: none; margin-bottom: 10px; }
.mini-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.mini-list li:last-child { border-bottom: 0; }
.mini-list li > span:last-child { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-weight: 750; font-variant-numeric: tabular-nums; }

.empty-state { display: grid; justify-items: center; gap: 6px; padding: 28px 16px; text-align: center; }
.empty-state__icon { width: 38px; height: 38px; color: var(--line-2); }
.empty-state__title { margin: 0; font-weight: 800; }
.empty-state__text { max-width: 420px; margin: 0 0 8px; color: var(--muted); font-size: .92rem; }

.wallet { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; margin-bottom: 16px; padding: 26px; border-radius: var(--r-lg); background: linear-gradient(120deg, var(--grove-900), var(--grove-700)); color: #fff; }
.wallet__label { margin: 0; color: var(--grove-300); font-weight: 700; }
.wallet__amount { margin: 2px 0 16px; font-family: var(--display); font-weight: 900; font-stretch: 76%; font-size: 3.4rem; line-height: 1; font-variant-numeric: tabular-nums; }
.wallet__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.wallet__stats { display: grid; gap: 8px; align-content: center; }
.wallet__stats > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; border-radius: var(--r-sm); background: rgba(255, 255, 255, .07); }
.wallet__stats dt { color: #C7D9D0; font-size: .9rem; }
.wallet__stats dd { font-weight: 800; font-variant-numeric: tabular-nums; }
.methods { display: grid; gap: 8px; list-style: none; }
.method { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--r); background: var(--paper); }
.method img { width: 56px; }
.method span { display: grid; }
.method small { color: var(--muted); }

.vstatus { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 0 0 20px; list-style: none; }
.vstatus__step { position: relative; display: grid; gap: 2px; padding: 14px 14px 14px 44px; border-radius: var(--r); background: var(--card); box-shadow: inset 0 0 0 1px var(--line); color: var(--muted); font-size: .86rem; }
.vstatus__step strong { color: var(--ink-2); font-size: 1rem; }
.vstatus__dot { position: absolute; left: 14px; top: 16px; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-2); background: #fff; }
.vstatus__step--done .vstatus__dot { border-color: var(--ok); background: var(--ok); box-shadow: inset 0 0 0 3px #fff; }
.vstatus__step--on { background: var(--lime-100); box-shadow: inset 0 0 0 2px var(--lime-600); color: var(--ink-2); }
.vstatus__step--on strong { color: var(--grove-900); }
.vstatus__step--on .vstatus__dot { border-color: var(--grove-700); background: var(--lime); }

.tickets { display: grid; gap: 12px; }
.ticket { position: relative; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-1); overflow: hidden; }
.ticket::before, .ticket::after { content: ""; position: absolute; top: calc(100% - 58px); width: 18px; height: 18px; border-radius: 50%; background: var(--paper); }
.ticket::before { left: -9px; }
.ticket::after { right: -9px; }
.ticket__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.ticket__type { margin: 0; font-weight: 850; }
.ticket__odds { margin-left: 6px; color: var(--muted); font-weight: 650; font-size: .88rem; }
.ticket__legs { display: grid; list-style: none; padding: 6px 18px; }
.ticket__leg { display: grid; grid-template-columns: 1fr auto; gap: 0 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.ticket__leg:last-child { border-bottom: 0; }
.ticket__leg span { grid-column: 1; color: var(--muted); font-size: .86rem; }
.ticket__leg-odds { grid-column: 2 !important; grid-row: 1 / span 2; align-self: center; color: var(--ink) !important; font-weight: 850; font-size: .95rem !important; font-variant-numeric: tabular-nums; }
.ticket__foot { display: flex; flex-wrap: wrap; gap: 6px 22px; padding: 16px 18px; border-top: 2px dashed var(--line); background: var(--paper); font-size: .9rem; }
.ticket__foot strong { font-variant-numeric: tabular-nums; }
.ticket__ref { margin-left: auto; color: var(--muted); font-size: .8rem; }
.ticket__note { margin: 0; padding: 10px 18px; background: var(--wait-bg); color: var(--wait); font-size: .86rem; font-weight: 650; }

.tabs__list { display: flex; gap: 6px; margin-bottom: 16px; }
.tabs__tab { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 16px; border: 0; border-radius: var(--r-pill); background: var(--card); box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 750; }
.tabs__tab[aria-selected="true"] { background: var(--grove-800); color: #fff; box-shadow: none; }
.tabs__count { padding: 1px 7px; border-radius: var(--r-pill); background: var(--paper-2); color: var(--muted); font-size: .76rem; }
.tabs__tab[aria-selected="true"] .tabs__count { background: var(--lime); color: var(--grove-900); }

.filterbar { display: flex; gap: 6px; margin-bottom: 12px; }
.limit-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* ---------- bet slip ---------- */

.slip { position: sticky; top: calc(var(--bar-h) + 16px); z-index: 30; margin-top: 28px; }
.slip__panel { display: flex; flex-direction: column; max-height: calc(100vh - var(--bar-h) - 32px); border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-2); overflow: hidden; }
.slip__head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--grove-800); color: #fff; }
.slip__title { display: flex; align-items: center; gap: 8px; flex: 1; font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.3rem; text-transform: uppercase; }
.slip__title .icon { color: var(--lime); }
.slip__count { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 6px; border-radius: var(--r-pill); background: var(--lime); color: var(--grove-900); font-family: var(--text); font-size: .8rem; font-weight: 850; }
.slip__clear { border: 0; background: none; color: #C7D9D0; font-size: .82rem; font-weight: 700; text-decoration: underline; }
.slip__clear:hover { color: #fff; }
.slip__close { display: none; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; place-items: center; }
.slip__body { flex: 1; overflow-y: auto; padding: 12px; }
.slip__empty { padding: 26px 12px; text-align: center; color: var(--muted); font-size: .92rem; }
.slip__empty-title { margin-bottom: 6px; color: var(--ink); font-weight: 800; font-size: 1rem; }
.slip__alert { margin-bottom: 10px; padding: 12px; border-radius: var(--r-sm); background: var(--wait-bg); color: var(--ink); font-size: .88rem; }
.slip__alert .btn { margin-top: 8px; }
.slip__items { display: grid; gap: 8px; list-style: none; }
.slip-item { position: relative; padding: 12px 12px 12px 14px; border-radius: var(--r); background: var(--paper); box-shadow: inset 3px 0 0 var(--lime-600); }
.slip-item--new { animation: slipIn .35s var(--ease); }
@keyframes slipIn { from { opacity: 0; transform: translateX(16px); } }
.slip-item--closed { box-shadow: inset 3px 0 0 var(--stop); opacity: .8; }
.slip-item__top { display: flex; justify-content: space-between; gap: 10px; padding-right: 28px; }
.slip-item__sel { font-weight: 800; line-height: 1.25; }
.slip-item__odds { display: inline-flex; align-items: baseline; gap: 6px; font-weight: 850; font-variant-numeric: tabular-nums; }
.slip-item__was { color: var(--muted); font-weight: 600; font-size: .85rem; }
.slip-item__odds--changed .slip-item__now { padding: 0 6px; border-radius: 5px; background: var(--gold); color: var(--ink); }
.slip-item__market, .slip-item__event { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.35; }
.slip-item__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.slip-item__closed { margin: 8px 0 0; color: var(--stop); font-size: .82rem; font-weight: 650; }
.slip-item__remove { position: absolute; top: 8px; right: 8px; display: grid; place-items: center; width: 28px; height: 28px; border: 0; border-radius: 50%; background: transparent; color: var(--muted); }
.slip-item__remove:hover { background: var(--paper-2); color: var(--ink); }
.slip-item__remove .icon { width: 16px; height: 16px; }
.slip__returns, .slip-item__returns { margin: 0; color: var(--muted); font-size: .8rem; text-align: right; }
.slip__returns strong, .slip-item__returns strong { display: block; color: var(--ink); font-size: .95rem; font-variant-numeric: tabular-nums; }
.stake { display: flex; align-items: center; width: 120px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: #fff; }
.stake:focus-within { border-color: var(--grove-700); box-shadow: 0 0 0 3px rgba(203, 234, 59, .5); }
.stake__cur { padding-left: 10px; color: var(--muted); font-weight: 800; }
.stake__input { width: 100%; min-height: 40px; padding: 0 8px 0 4px; border: 0; background: none; outline: none; font-weight: 800; font-variant-numeric: tabular-nums; }
.slip__multi { margin-top: 10px; padding: 12px 14px; border-radius: var(--r); background: var(--grove-800); color: #fff; }
.slip__multi-head { display: flex; justify-content: space-between; font-weight: 850; }
.slip__multi-odds { color: var(--lime); font-variant-numeric: tabular-nums; }
.slip__multi-desc { margin: 0 0 8px; color: #C7D9D0; font-size: .8rem; }
.slip__multi .slip__returns { color: #C7D9D0; }
.slip__multi .slip__returns strong { color: #fff; }
.slip__stake-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.slip__foot { display: grid; gap: 10px; padding: 12px 16px 16px; border-top: 1px solid var(--line); background: var(--card); }
.slip__totals { display: grid; gap: 2px; }
.slip__totals > div { display: flex; justify-content: space-between; font-size: .9rem; }
.slip__totals dd { font-weight: 850; font-variant-numeric: tabular-nums; }
.slip__totals > div:last-child dd { color: var(--grove-700); font-size: 1.1rem; }
.slip__confirm { padding: 12px; border-radius: var(--r-sm); background: var(--lime-100); }
.slip__confirm-text { margin-bottom: 10px; font-size: .9rem; }
.slip__confirm-actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px; }
.slip__note { margin: 0; color: var(--muted); font-size: .76rem; }
.slip__receipt { padding: 18px 16px; }
.slip__receipt-title { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-weight: 850; font-size: 1.1rem; }
.slip__receipt-title .icon { width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--ok); color: #fff; }
.slip__receipt-list { display: grid; gap: 6px; margin-bottom: 10px; list-style: none; font-size: .88rem; }
.slip__receipt-list li { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: var(--r-sm); background: var(--paper); }
.slip__receipt-text { color: var(--ink-2); font-size: .88rem; }

.slip-fab { position: fixed; right: 20px; bottom: calc(20px + var(--tabbar-h)); z-index: 45; display: inline-flex; align-items: center; gap: 8px; min-height: 52px; padding: 0 18px; border: 0; border-radius: var(--r-pill); background: var(--grove-800); color: #fff; font-weight: 800; box-shadow: var(--shadow-2); }
.slip-fab .icon { color: var(--lime); }
.slip-fab__count { display: grid; place-items: center; min-width: 24px; height: 24px; border-radius: 12px; background: var(--lime); color: var(--grove-900); font-size: .8rem; }
.slip-scrim { position: fixed; inset: 0; z-index: 55; background: rgba(7, 32, 26, .5); }

/* floating slip: home page at every width, and every slip page below 1100px */
.page--home .slip { position: fixed; top: auto; left: auto; right: 16px; bottom: 16px; z-index: 60; width: 380px; margin: 0; transform: translateY(calc(100% + 40px)); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
.page--home .slip .slip__close { display: grid; }
.page--home .slip--open { transform: none; visibility: visible; }
.page--home .slip__panel { max-height: min(78vh, 720px); }

/* ---------- footer ---------- */

.footer { background: var(--grove-950); color: #BFD3C9; font-size: .92rem; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: 48px var(--gutter) 28px; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.brand--footer .brand__mark { width: 46px; height: 46px; }
.footer__pitch { margin: 14px 0 12px; max-width: 360px; }
.footer__help { margin: 0; padding: 14px; border-radius: var(--r); background: rgba(255, 255, 255, .04); font-size: .86rem; }
.footer__help a { color: #fff; font-weight: 800; }
.footer__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 20px; list-style: none; }
.footer__links a, .footer__cookie { display: inline-block; padding: 5px 0; border: 0; background: none; color: #E5EFEA; font-size: .92rem; text-decoration: none; }
.footer__links a:hover, .footer__cookie:hover { color: var(--lime); text-decoration: underline; }
.footer__links--minor { margin-top: 18px; padding-top: 14px; border-top: 1px dashed rgba(255, 255, 255, .1); }
.footer__links--minor a, .footer__links--minor .footer__cookie { color: #9EB7AB; font-size: .86rem; }
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 26px 0; list-style: none; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.trust__item a, .trust__item > span, .trust__item > img { display: flex; align-items: center; min-height: 48px; padding: 8px 14px; border-radius: var(--r-sm); background: rgba(255, 255, 255, .05); }
.trust__item img { width: auto; height: 28px; }
.trust__item--light a, .trust__item--light > img { background: #F1ECE0; }
.trust__item--light img { height: 22px; }
.trust__item--pay > img { height: 48px; padding: 12px 16px; }
.trust__gamcare { gap: 8px; color: #fff; font-weight: 800; text-decoration: none; }
.trust__gamcare img { height: 26px; filter: brightness(2.6); }
.trust__age img { height: 30px; filter: brightness(2.6); }
.footer__legal { padding-top: 22px; color: #9EB7AB; font-size: .84rem; }
.footer__legal p { margin-bottom: 6px; }
.footer__age { display: inline-grid; place-items: center; min-width: 34px; height: 22px; margin-right: 6px; border: 1.5px solid var(--lime); border-radius: 5px; color: var(--lime); font-size: .72rem; }
.footer__copy { margin-top: 14px !important; color: #6F8B7E; }

/* ---------- mobile tab bar ---------- */

.tabbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; grid-template-columns: repeat(5, 1fr); padding: 6px 6px calc(6px + env(safe-area-inset-bottom)); background: var(--grove-900); box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, .4); }
.tabbar__item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 52px; border: 0; border-radius: var(--r-sm); background: none; color: #A9C2B6; font-size: .7rem; font-weight: 700; text-decoration: none; }
.tabbar__item .icon { width: 24px; height: 24px; }
.tabbar__item--on { color: var(--lime); background: rgba(255, 255, 255, .05); }
.tabbar__item:hover { color: #fff; }
.tabbar__count { position: absolute; top: 4px; left: calc(50% + 6px); display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--peel); color: #fff; font-size: .68rem; font-weight: 850; }
.tabbar__count--bump { animation: bump .4s var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); } }

/* ---------- drawer ---------- */

.drawer { position: fixed; inset: 0; z-index: 80; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(7, 32, 26, .55); animation: fade .2s; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 14px; width: min(380px, 92vw); padding: 16px 18px 24px; background: var(--card); overflow-y: auto; animation: slideIn .28s var(--ease); }
@keyframes slideIn { from { transform: translateX(100%); } }
@keyframes fade { from { opacity: 0; } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__close { display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--paper-2); }
.drawer__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer__user { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: var(--r); background: var(--grove-800); color: #fff; }
.drawer__group { margin: 8px 0 4px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.drawer__nav ul { display: grid; list-style: none; }
.drawer__nav a { display: flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 8px; border-radius: var(--r-sm); color: var(--ink); font-weight: 650; text-decoration: none; }
.drawer__nav a:hover { background: var(--paper); }
.drawer__nav .icon { width: 20px; height: 20px; color: var(--grove-600); }
.drawer__odds { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); font-weight: 700; font-size: .9rem; }

/* ---------- age gate, cookies, dialogs, toast ---------- */

.age-gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(7, 32, 26, .86); backdrop-filter: blur(10px); }
.age-gate__card { width: min(520px, 100%); padding: 34px 30px; border-radius: var(--r-lg); background: var(--card); text-align: center; box-shadow: var(--shadow-2); animation: pop .35s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(10px); } }
.age-gate__logo { width: 76px; height: 76px; margin: 0 auto 14px; }
.age-gate__eyebrow { margin-bottom: 6px; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.age-gate__title { margin-bottom: 12px; font-family: var(--display); font-weight: 900; font-stretch: 74%; font-size: 2.6rem; line-height: .95; text-transform: uppercase; }
.age-gate__text { color: var(--ink-2); }
.age-gate__actions { display: grid; gap: 10px; margin-top: 22px; }
.age-gate__under { margin-top: 18px; padding: 14px; border-radius: var(--r); background: var(--stop-bg); text-align: left; font-size: .92rem; }

.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: calc(16px + var(--tabbar-h)); z-index: 70; display: flex; justify-content: center; pointer-events: none; }
.cookie-bar__inner { display: flex; align-items: center; gap: 20px; width: min(1100px, 100%); padding: 16px 18px; border-radius: var(--r-lg); background: var(--ink); color: #E9E4D8; box-shadow: var(--shadow-2); pointer-events: auto; animation: rise .35s var(--ease); }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } }
.cookie-bar__text { margin: 0; font-size: .9rem; }
.cookie-bar__text strong { color: #fff; }
.cookie-bar__text a { color: var(--lime); }
.cookie-bar__actions { display: flex; flex: none; gap: 8px; }
.cookie-bar .btn--line { --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .3); }
.cookie-bar .btn--quiet { --btn-fg: #E9E4D8; text-decoration: underline; }

.modal { width: min(560px, calc(100% - 32px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: var(--r-lg); background: var(--card); color: var(--ink); box-shadow: var(--shadow-2); }
.modal::backdrop { background: rgba(7, 32, 26, .6); backdrop-filter: blur(4px); }
.modal__card { display: grid; gap: 12px; margin: 0; padding: 26px; }
.modal__title { font-family: var(--display); font-weight: 900; font-stretch: 80%; font-size: 1.8rem; text-transform: uppercase; }
.modal__text { margin: 0; color: var(--ink-2); }
.modal__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin-top: 8px; }
.consent { display: grid; gap: 8px; list-style: none; }
.consent__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 14px; border-radius: var(--r); background: var(--paper); }
.consent__text { display: grid; gap: 2px; cursor: pointer; }
.consent__text span { color: var(--muted); font-size: .86rem; }
.consent__fixed { flex: none; color: var(--ok); font-size: .82rem; font-weight: 800; }

.toast { position: fixed; left: 50%; bottom: calc(24px + var(--tabbar-h)); z-index: 90; max-width: min(520px, calc(100% - 32px)); padding: 12px 18px; border-radius: var(--r); background: var(--ink); color: #fff; font-weight: 650; box-shadow: var(--shadow-2); transform: translateX(-50%); animation: rise .3s var(--ease); }

/* ---------- responsive ---------- */

@media (max-width: 1240px) {
  .mainnav__link { padding: 0 9px; font-size: .9rem; }
  .masthead__bar { gap: 14px; }
  .switcher__option { padding: 0 12px; }
}

@media (max-width: 1100px) {
  :root { --tabbar-h: 70px; }
  .masthead { top: -36px; }
  .mainnav, .masthead__deposit { display: none; }
  .masthead__menu { display: grid; }
  .tabbar { display: grid; }
  .masthead__strip .odds-switch { display: none; }
  .layout--slip { display: block; }
  .layout--slip .sport-nav { margin: 0 calc(var(--gutter) * -1) 8px; padding: 10px var(--gutter); }
  .slip { position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 60; width: auto; margin: 0; transform: translateY(105%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
  .slip--open { transform: none; visibility: visible; }
  .slip__panel { max-height: 86vh; border-radius: var(--r-lg) var(--r-lg) 0 0; padding-bottom: env(safe-area-inset-bottom); }
  .slip__close { display: grid; }
  .page--home .slip { left: 0; right: 0; bottom: 0; width: auto; }
  .page--home .slip__panel { max-height: 86vh; }
  .slip-fab { display: none !important; }
  .home__sports { grid-template-columns: minmax(0, 1fr); }
  .detail { grid-template-columns: minmax(0, 1fr); }
  .card--sticky { position: static; }
  .account { grid-template-columns: minmax(0, 1fr); }
  .account__side { position: static; }
  .account-nav { overflow-x: auto; scrollbar-width: none; }
  .account-nav__list { display: flex; gap: 4px; }
  .account-nav__link { white-space: nowrap; }
  .account-nav__logout { display: none; }
  .contact { grid-template-columns: minmax(0, 1fr); }
  .contact__side { position: static; grid-template-columns: 1fr 1fr; }
  .lobby__layout { grid-template-columns: minmax(0, 1fr); }
  .lobby__filter-toggle { display: inline-flex; }
  .filters { position: static; max-height: none; display: none; }
  .filters--open { display: grid; }
  .rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event { grid-template-columns: 96px minmax(0, 1fr) minmax(180px, 240px); }
  .event__more { display: none; }
}

@media (max-width: 860px) {
  .hero__intro, .hero__split { grid-template-columns: minmax(0, 1fr); }
  .hero__intro { gap: 14px; }
  .door { min-height: 300px; }
  .reading { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .toc { position: static; margin-bottom: 18px; padding: 14px; border-radius: var(--r); background: var(--card); box-shadow: var(--shadow-1); }
  .toc__list { display: flex; flex-wrap: wrap; gap: 4px; }
  .toc__link { border-left: 0; border-radius: var(--r-pill); background: var(--paper); padding: 6px 12px; font-size: .84rem; }
  .game__hero { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .game__cover { max-width: 260px; }
  .gate__panels { grid-template-columns: minmax(0, 1fr); }
  .auth { grid-template-columns: minmax(0, 1fr); }
  .auth__aside { display: none; }
  .columns { grid-template-columns: minmax(0, 1fr); }
  .tracks, .safer { grid-template-columns: minmax(0, 1fr); }
  .operator__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .join { flex-direction: column; align-items: flex-start; }
  .wallet { grid-template-columns: minmax(0, 1fr); }
  .live-grid { grid-template-columns: minmax(0, 1fr); }
  .cookie-bar__inner { flex-direction: column; align-items: stretch; }
  .cookie-bar__actions { flex-wrap: wrap; }
  .fixture__title--vs { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .fixture__title--vs > span:last-child { text-align: left; }
  .fixture__v { justify-self: start; }
  .search { width: 100%; }
  .lobby__bar { flex-wrap: wrap; }
  .lobby__bar .chips { flex-basis: 100%; margin: 0 calc(var(--gutter) * -1); padding: 2px var(--gutter); }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .masthead__strip-inner { justify-content: center; }
  .brand__word { font-size: 1.08rem; }
  .brand__mark { width: 34px; height: 34px; }
  .switcher { display: none; }
  .masthead__bar { gap: 10px; }
  .balance-chip__label { display: none; }
  .hero { padding: 24px 0 36px; }
  .door__body { padding: 22px; }
  .door--casino .door__body { max-width: 100%; padding-bottom: 170px; }
  .door__fan { top: auto; bottom: -20px; right: -10px; width: 70%; height: 170px; transform: none; }
  .door__cover { width: 44%; }
  .door__cover--1 { top: 20px; right: 46%; }
  .door__cover--2 { top: 10px; right: 10%; }
  .door__cover--3 { top: 60px; right: 26%; width: 38%; }
  .event { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "meta more" "teams teams" "odds odds"; gap: 8px; }
  .event__meta { grid-area: meta; flex-direction: row; align-items: center; gap: 8px; }
  .event__teams { grid-area: teams; }
  .event__odds { grid-area: odds; }
  .event__more { grid-area: more; display: inline-flex; }
  .block--panel .event, .block--live .event { grid-template-columns: minmax(0, 1fr); grid-template-areas: "meta" "teams" "odds"; }
  .block--panel, .block--live { padding: 16px; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); border-radius: 0; }
  .next-off__list { grid-template-columns: minmax(0, 1fr); }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .game-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail__track { grid-auto-columns: 150px; gap: 12px; }
  .rail__controls { display: none; }
  .block .section-head:has(+ .rail) { padding-right: 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .rooms { grid-template-columns: minmax(0, 1fr); }
  .form__row, .form__row--three { grid-template-columns: minmax(0, 1fr); }
  .tiles, .tiles--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .tile { padding: 14px; }
  .tile__value { font-size: 1.35rem; }
  .facts--wide > div { flex-direction: column; gap: 2px; }
  .facts--grid { grid-template-columns: minmax(0, 1fr); }
  .live-table { grid-template-columns: 110px minmax(0, 1fr); gap: 12px; }
  .live-table__text { display: none; }
  .vstatus { grid-template-columns: minmax(0, 1fr); }
  .status-list > div { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .contact__side { grid-template-columns: minmax(0, 1fr); }
  .operator__grid { grid-template-columns: minmax(0, 1fr); }
  .gate__stage { flex-direction: column; align-items: flex-start; }
  .gate__art { width: 90px; }
  .gate__ball { width: 80px; height: 80px; font-size: 2rem; }
  .card { padding: 18px; }
  .route { padding: 20px; }
  .market__grid--3 { grid-template-columns: minmax(0, 1fr); }
  .market__grid--2 { grid-template-columns: minmax(0, 1fr); }
  .runners__wide { display: none; }
  .modal__actions { justify-content: stretch; }
  .modal__actions .btn { flex: 1; }
  .footer__links { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .trust { gap: 8px; }
  .ticket__ref { margin-left: 0; width: 100%; }
  .slip__confirm-actions { grid-template-columns: 1fr 1fr; }
  .wallet__amount { font-size: 2.6rem; }
  .auth { margin-top: 20px; }
  .lost__code { font-size: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
