/* ============================================================
   Scoby — game scorekeeping SaaS. Design tokens + components.
   Type: Space Grotesk (display) / Manrope (body) — geometric sans.
   Color: cool slate neutrals + a single confident accent.
   ============================================================ */

:root {
  /* Neutrals (cool, low chroma) */
  --bg:        oklch(0.984 0.004 264);
  --bg-2:      oklch(0.965 0.006 264);
  --surface:   #ffffff;
  --surface-2: oklch(0.978 0.004 264);
  --ink:       oklch(0.255 0.02 266);
  --ink-2:     oklch(0.44 0.02 266);
  --muted:     oklch(0.6 0.018 266);
  --faint:     oklch(0.72 0.014 266);
  --line:      oklch(0.918 0.006 266);
  --line-2:    oklch(0.86 0.008 266);

  /* Accent (set by Tweaks; default indigo-violet) */
  --accent:    oklch(0.55 0.2 285);
  --accent-50: oklch(0.96 0.03 285);
  --accent-100:oklch(0.92 0.06 285);
  --accent-ink:#ffffff;

  /* Semantic */
  --good:      oklch(0.6 0.13 152);
  --good-50:   oklch(0.96 0.04 152);
  --strike:    oklch(0.62 0.17 25);
  --strike-50: oklch(0.965 0.03 25);
  --gold:      oklch(0.78 0.13 85);

  /* Type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;

  /* Radius / shadow / spacing */
  --r-sm: 8px; --r: 12px; --r-lg: 16px; --r-xl: 22px; --r-pill: 999px;
  --sh-xs: 0 1px 2px oklch(0.4 0.02 266 / 0.06);
  --sh-sm: 0 1px 3px oklch(0.4 0.02 266 / 0.07), 0 1px 2px oklch(0.4 0.02 266 / 0.04);
  --sh:    0 6px 20px oklch(0.4 0.02 266 / 0.08), 0 2px 6px oklch(0.4 0.02 266 / 0.05);
  --sh-lg: 0 20px 50px oklch(0.35 0.02 266 / 0.16), 0 6px 16px oklch(0.35 0.02 266 / 0.08);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
}
#root { min-height: 100vh; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
input, select { font-family: inherit; }
::selection { background: var(--accent-100); }

/* density */
[data-density="compact"] { --cell-h: 38px; --row-pad: 6px; }
[data-density="regular"] { --cell-h: 46px; --row-pad: 9px; }
[data-density="comfy"]   { --cell-h: 54px; --row-pad: 12px; }
:root { --cell-h: 46px; --row-pad: 9px; }

/* ---------- App shell ---------- */
.app { min-height: 100vh; display: flex; flex-direction: column; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: oklch(0.984 0.004 264 / 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { height: 62px; display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; cursor: pointer; }
.brand .logo { width: 28px; height: 28px; flex: none; }
.crumb-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.topbar .spacer { flex: 1; }
.avatar {
  width: 34px; height: 34px; border-radius: var(--r-pill);
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 600; font-size: 14px; color: #fff; flex: none;
  background: var(--accent); box-shadow: var(--sh-xs);
}
.lang-toggle { display: inline-flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px; gap: 2px; }
.lt-opt { border: none; background: transparent; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .03em; color: var(--muted); padding: 5px 11px; border-radius: var(--r-pill); transition: background .15s, color .15s; }
.lt-opt:hover { color: var(--ink); }
.lt-opt.on { background: var(--surface); color: var(--ink); box-shadow: var(--sh-xs); }
.avatar.sm { width: 28px; height: 28px; font-size: 12px; }
.avatar.lg { width: 56px; height: 56px; font-size: 22px; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: var(--r); border: 1px solid transparent;
  font-weight: 600; font-size: 14.5px; cursor: pointer; white-space: nowrap;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  background: var(--surface); color: var(--ink); border-color: var(--line-2);
}
.btn:hover { background: var(--surface-2); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--accent); color: var(--accent-ink); border-color: transparent; box-shadow: var(--sh-sm); }
.btn.primary:hover { filter: brightness(1.06); background: var(--accent); }
.btn.ghost { background: transparent; border-color: transparent; color: var(--ink-2); }
.btn.ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn.lg { height: 50px; padding: 0 24px; font-size: 16px; border-radius: var(--r-lg); }
.btn.sm { height: 34px; padding: 0 13px; font-size: 13px; border-radius: var(--r-sm); }
.btn.block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn .ic { width: 17px; height: 17px; }

.iconbtn {
  width: 38px; height: 38px; border-radius: var(--r); border: 1px solid var(--line-2);
  background: var(--surface); display: grid; place-items: center; cursor: pointer; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.iconbtn:hover { background: var(--surface-2); color: var(--ink); }

/* ---------- Cards / surfaces ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* ---------- Inputs ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.input {
  height: 46px; padding: 0 14px; border-radius: var(--r); border: 1px solid var(--line-2);
  background: var(--surface); font-size: 16px; color: var(--ink); width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-50); }
.input::placeholder { color: var(--faint); }

/* Stepper */
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r); background: var(--surface); overflow: hidden; }
.stepper button { width: 46px; height: 46px; border: none; background: transparent; font-size: 20px; color: var(--ink-2); cursor: pointer; display: grid; place-items: center; }
.stepper button:hover { background: var(--surface-2); color: var(--ink); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper .val { min-width: 56px; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 20px; }

/* ---------- New landing page ---------- */
.lp-hero { min-height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 24px 60px; position: relative; overflow: hidden; }
.lp-orb { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle at center, var(--accent-50) 0%, transparent 65%); pointer-events: none; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.lp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: var(--accent-50); border: 1px solid var(--accent-100); padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 22px; }
.lp-h1 { font-family: var(--font-display); font-size: clamp(44px, 7vw, 76px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.01; margin: 0; white-space: pre-line; }
.lp-h1 em { font-style: normal; color: var(--accent); }
.lp-sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--ink-2); max-width: 44ch; margin: 20px auto 0; line-height: 1.55; }
.lp-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

.lp-games { padding: 52px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-games h2 { font-size: 20px; margin-bottom: 20px; text-align: center; }
.lp-game-strip {
  display: flex; gap: 14px; overflow-x: auto; padding: 4px 24px 16px;
  max-width: 100%; scrollbar-width: thin;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.lp-game-chip {
  border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; gap: 10px;
  padding: 16px; border-radius: var(--r-lg);
}
.lp-game-chip h3 { font-size: 15px; }
.lp-game-chip.active { border-color: var(--accent-100); background: var(--accent-50); }
.carousel-btn:disabled { opacity: .3; cursor: not-allowed; }

.lp-features { padding: 60px 24px; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lp-feat { display: flex; flex-direction: column; gap: 10px; }
.lp-feat-icon { width: 44px; height: 44px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); }
.lp-feat h3 { font-size: 17px; }
.lp-feat p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }

.lp-cta-banner { background: var(--ink); color: #fff; text-align: center; padding: 56px 24px; }
.lp-cta-banner h2 { font-size: clamp(24px, 4vw, 36px); color: #fff; margin-bottom: 8px; }
.lp-cta-banner p { color: oklch(0.7 0.01 266); margin-bottom: 24px; font-size: 16px; }

@media (max-width: 720px) {
  .lp-features { grid-template-columns: 1fr; gap: 22px; }
  .lp-hero { min-height: 70vh; padding: 60px 20px 40px; }
  .topbar-inner { gap: 10px; }
  .section-head { flex-wrap: wrap; gap: 10px; }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .modal { margin: 0 12px; }
  input, select, textarea { font-size: 16px !important; }
}

@media (max-width: 600px) {
  .hide-mobile { display: none !important; }
  .topbar-inner .btn { padding: 0 13px; font-size: 13px; height: 36px; }
  .crumb-pill { max-width: 110px; min-width: 0; overflow: hidden; text-overflow: ellipsis; flex-shrink: 1; }
}

/* ---------- Dashboard ---------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.section-head h2 { font-size: 22px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.game-card { padding: 20px; display: flex; flex-direction: column; gap: 14px; cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, border-color .18s; position: relative; overflow: hidden; }
.game-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--line-2); }
.game-card.soon { cursor: default; opacity: .62; }
.game-card.soon:hover { transform: none; box-shadow: var(--sh-sm); }
.game-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-50); border: 1px solid var(--accent-100); }
.game-card h3 { font-size: 18px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-pill); }
.tag.live { color: var(--good); background: var(--good-50); }
.tag.soon { color: var(--muted); background: var(--bg-2); }

.session-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .12s; }
.session-row:last-child { border-bottom: none; }
.session-row:hover { background: var(--surface-2); }
.session-row .meta { flex: 1; min-width: 0; }
.pcount { display: inline-flex; align-items: center; }
.pcount .avatar { margin-left: -8px; border: 2px solid var(--surface); }
.pcount .avatar:first-child { margin-left: 0; }

/* dashboard: continue rail */
.dash-stat { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); padding: 6px 13px; border-radius: var(--r-pill); white-space: nowrap; }
.continue-rail { display: flex; gap: 14px; overflow-x: auto; padding: 2px 2px 12px; scrollbar-width: thin; }
.continue-card { flex: none; width: 290px; padding: 16px; display: flex; flex-direction: column; gap: 13px; cursor: pointer; transition: transform .12s, box-shadow .18s, border-color .18s; }
.continue-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--line-2); }
.cc-top { display: flex; align-items: center; gap: 9px; }
.cc-title { font-weight: 700; font-size: 15px; flex: 1; }
.cc-players { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cc-players > span:last-child { white-space: nowrap; flex: none; }
.cc-foot { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.cc-foot > .muted { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-foot .btn { white-space: nowrap; flex: none; }

/* dashboard: library toolbar */
.lib-toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.search { position: relative; flex: 1; min-width: 220px; }
.search .si { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--faint); pointer-events: none; }
.search input { padding-left: 42px; height: 44px; }
.chips { display: flex; gap: 8px; }
.chip-filter { height: 44px; padding: 0 16px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: var(--surface); font-family: var(--font-body); font-weight: 600; font-size: 13.5px; color: var(--ink-2); cursor: pointer; transition: background .14s, color .14s, border-color .14s; white-space: nowrap; }
.chip-filter:hover { background: var(--surface-2); }
.chip-filter.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.game-card .cat-badge { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); }

/* ---------- Game / scoreboard ---------- */
.game-top { display: flex; align-items: center; gap: 14px; padding: 16px 0; flex-wrap: wrap; }
.round-pill { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line-2); padding: 7px 14px; border-radius: var(--r-pill); white-space: nowrap; flex: none; }

.player-rail { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 12px; scrollbar-width: thin; }
.pchip {
  flex: none; min-width: 132px; padding: 12px 14px; border-radius: var(--r-lg);
  border: 1.5px solid var(--line); background: var(--surface); cursor: pointer;
  display: flex; flex-direction: column; gap: 8px; transition: border-color .15s, box-shadow .15s, transform .1s;
}
.pchip:hover { border-color: var(--line-2); }
.pchip.active { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-50); }
.pchip .ptop { display: flex; align-items: center; gap: 9px; }
.pchip .pname { font-weight: 700; font-size: 14px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pchip . ptotal { font-family: var(--font-display); }
.pchip .score { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; line-height: 1; }
.pchip .turn-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-50); }
.pchip.lead .crown { color: var(--gold); }

/* sheet */
.sheet-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--sh-sm); }
table.sheet { border-collapse: collapse; width: 100%; min-width: max-content; }
table.sheet th, table.sheet td { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
table.sheet th:last-child, table.sheet td:last-child { border-right: none; }
.sheet thead th { background: var(--surface-2); font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink-2); height: 44px; padding: 0 12px; white-space: nowrap; }
.cat-cell { padding: 0 14px; height: var(--cell-h); text-align: left; white-space: nowrap; background: var(--surface); position: sticky; left: 0; z-index: 2; border-right: 1px solid var(--line-2); }
.cat-cell .cl { display: flex; align-items: center; gap: 10px; }
.cat-cell .face { width: 30px; height: 30px; flex: none; }
.cat-cell .clabel { font-weight: 600; font-size: 14.5px; }
.cat-cell .csub { font-size: 11.5px; color: var(--faint); }
.cat-cell .cval { margin-left: auto; font-size: 11.5px; color: var(--muted); font-family: var(--font-display); }

.scell {
  height: var(--cell-h); min-width: 78px; text-align: center; cursor: pointer; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink);
  transition: background .12s;
}
.scell:hover { background: var(--accent-50); }
.scell.empty { color: var(--faint); }
.scell.empty::after { content: "+"; color: var(--faint); font-weight: 500; }
.scell.struck { color: var(--strike); }
.scell.struck::after { content: "✕"; font-size: 14px; }
.scell.filled { color: var(--ink); }
.scell.locked { cursor: default; }
.scell.locked:hover { background: transparent; }
.scell.lastentry { box-shadow: inset 0 0 0 2px var(--accent); border-radius: 6px; }
.sheet tfoot td, .sub-row td { background: var(--surface-2); font-weight: 700; }
.sub-row .cat-cell { font-size: 13px; color: var(--ink-2); background: var(--surface-2); }
.sub-row .scell { font-size: 15px; color: var(--ink-2); cursor: default; }
.sub-row .scell:hover { background: var(--surface-2); }
.total-row .cat-cell { background: var(--ink); color: #fff; }
.total-row .scell { background: var(--ink); color: #fff; font-size: 19px; cursor: default; }
.total-row .scell:hover { background: var(--ink); }

/* face glyph */
.face-glyph { display: grid; place-items: center; width: 100%; height: 100%; border-radius: 7px; border: 1.5px solid var(--line-2); background: var(--surface); font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink); }
.face-glyph.k { color: var(--accent); border-color: var(--accent-100); background: var(--accent-50); }

/* action bar */
.action-bar { position: sticky; bottom: 0; z-index: 30; background: oklch(0.984 0.004 264 / 0.9); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 14px 0; margin-top: 22px; }
.action-bar .inner { display: flex; align-items: center; gap: 12px; }
.turn-label { font-size: 14px; color: var(--ink-2); }
.turn-label b { color: var(--ink); font-family: var(--font-display); }

/* ---------- Modal / sheet popover ---------- */
.scrim { position: fixed; inset: 0; background: oklch(0.25 0.02 266 / 0.42); backdrop-filter: blur(2px); z-index: 80; display: grid; place-items: center; padding: 18px; animation: fade .15s ease; }
@keyframes fade { from { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
.modal { background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg); width: 100%; max-width: 440px; padding: 26px; animation: pop .18s cubic-bezier(.2,.9,.3,1.2); }
.modal.wide { max-width: 540px; }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.97); } }
.modal h3 { font-size: 21px; }

.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.entry-opt {
  height: 64px; border-radius: var(--r); border: 1.5px solid var(--line-2); background: var(--surface);
  cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  transition: border-color .12s, background .12s, transform .08s;
}
.entry-opt:hover { border-color: var(--accent); background: var(--accent-50); }
.entry-opt:active { transform: scale(.97); }
.entry-opt .pts { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.entry-opt .cnt { font-size: 11px; color: var(--muted); }
.entry-opt.zero:hover { border-color: var(--strike); background: var(--strike-50); }

.results-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.results-row:last-child { border: none; }
.rank-badge { width: 30px; height: 30px; border-radius: var(--r-pill); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; background: var(--bg-2); color: var(--ink-2); }
.rank-badge.gold { background: var(--gold); color: #4a3a00; }

/* rules panel */
.rules-list { display: flex; flex-direction: column; gap: 2px; }
.rule-line { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.rule-line:last-child { border: none; }
.rule-line .face { width: 28px; height: 28px; flex: none; }
.rule-line .rl-name { font-weight: 600; flex: 1; }
.rule-line .rl-pts { font-family: var(--font-display); font-weight: 600; color: var(--accent); }

/* misc */
.divider { height: 1px; background: var(--line); margin: 28px 0; }
.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); }
.toast { position: fixed; bottom: 86px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 11px 18px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600; z-index: 90; box-shadow: var(--sh); animation: pop .2s ease; }

.steps-dots { display: flex; gap: 7px; }
.steps-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: all .2s; }
.steps-dots i.on { background: var(--accent); width: 22px; border-radius: 4px; }

/* Tischfußball board */
.tfb-side { transition: border-color .3s, box-shadow .3s; }
.tfb-active { border-color: var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-50); }
  .hero { padding: 40px 0 28px; }
  .crumb-pill { display: none; }
  .entry-grid { grid-template-columns: repeat(3, 1fr); }
  .action-bar .inner { flex-wrap: wrap; }
}
