:root {
  color-scheme: dark;
  --bg: #10221a;
  --bg-strong: #07120e;
  --surface: #f6f0df;
  --surface-2: #fffaf0;
  --ink: #f8f3e8;
  --ink-on-light: #152019;
  --muted: #bdd0c1;
  --line: rgba(246, 240, 223, 0.18);
  --primary: #34c77b;
  --primary-dark: #167747;
  --amber: #f1b84b;
  --coral: #e86f51;
  --sky: #80c4d8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

:root[data-theme='light'] {
  color-scheme: light;
  --bg: #f7f1e4;
  --bg-strong: #e7ddc9;
  --surface: #ffffff;
  --surface-2: #f9f5ec;
  --ink: #17221b;
  --ink-on-light: #17221b;
  --muted: #5d6d61;
  --line: rgba(23, 34, 27, 0.16);
  --primary: #167747;
  --primary-dark: #0f5c36;
  --amber: #c98824;
  --coral: #cc553d;
  --sky: #377f99;
  --shadow: 0 16px 40px rgba(44, 37, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(52, 199, 123, 0.12), transparent 360px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(246, 240, 223, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 240, 223, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 18, 14, 0.82);
  backdrop-filter: blur(18px);
}

:root[data-theme='light'] .site-header {
  background: rgba(247, 241, 228, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--surface);
  border-radius: 8px;
  background: var(--primary);
  color: #07120e;
  font-weight: 900;
}

.brand-title,
.brand-kicker {
  display: block;
  white-space: nowrap;
}

.brand-title {
  font-size: 1.02rem;
  font-weight: 900;
}

.brand-kicker {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav a,
.back-link {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover,
.nav a.is-active,
.back-link:hover {
  border-color: var(--line);
  background: rgba(246, 240, 223, 0.1);
  color: var(--ink);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  outline: none;
}

.today-band,
.game-hero,
.message-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 199, 123, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(246, 240, 223, 0.08), rgba(246, 240, 223, 0.03));
  box-shadow: var(--shadow);
}

.message-panel {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.today-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 3rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

.lede,
.game-card p,
.side-panel p,
.status-line,
.site-footer {
  color: var(--muted);
}

.lede {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.daily-board {
  display: grid;
  gap: 7px;
  min-width: 190px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-on-light);
}

.daily-board strong {
  font-size: 2.6rem;
  line-height: 1;
}

.board-label {
  color: #6f6146;
  font-size: 0.85rem;
  font-weight: 800;
}

.mini-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.mini-progress span {
  height: 8px;
  border-radius: 999px;
  background: #d8ccb5;
}

.mini-progress span.is-done {
  background: var(--primary);
}

.featured-games,
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.feature-card,
.game-card,
.play-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.08);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 260px;
  padding: 14px;
  overflow: hidden;
  text-decoration: none;
}

.feature-card strong {
  align-self: end;
  font-size: 1.35rem;
}

.feature-meta,
.card-meta,
.score-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-meta {
  padding: 6px 9px;
  background: var(--amber);
  color: #21180a;
}

.game-art {
  position: relative;
  display: grid;
  min-height: 132px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, #17633d, #0d3d29);
  background-size: 25% 100%, 100% 100%;
}

.game-art.futbol-list-a {
  background:
    linear-gradient(90deg, rgba(21, 32, 25, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, #f1b84b, #e86f51);
}

.game-art.football-bingo {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, #2d6574, #173a47);
}

.pitch-line {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.pitch-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.art-ball {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 4px solid #fff7e8;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #161f18 0 18%, transparent 19%),
    conic-gradient(from 45deg, #161f18 0 12%, #fff7e8 12% 25%, #161f18 25% 38%, #fff7e8 38% 62%, #161f18 62% 75%, #fff7e8 75% 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.tenaball-stack,
.bingo-art-grid,
.list-art-card,
.art-scoreline {
  position: relative;
  z-index: 1;
}

.tenaball-stack {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(78%, 250px);
  margin: 0 16px 18px auto;
  justify-content: flex-end;
}

.bingo-art-grid {
  align-self: center;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: min(78%, 260px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 16, 22, 0.22);
}

.list-art-card {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 7px;
  width: min(78%, 270px);
  margin: 0 16px 16px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.85);
  color: #152019;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.list-art-card i {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  font-style: normal;
}

.list-art-card b {
  min-width: 0;
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-art-card em {
  width: 16px;
  height: 16px;
  border: 2px solid #198650;
  border-radius: 50%;
}

.list-art-card em::after {
  display: block;
  width: 7px;
  height: 4px;
  margin: 3px 0 0 3px;
  content: "";
  border-bottom: 2px solid #198650;
  border-left: 2px solid #198650;
  transform: rotate(-45deg);
}

.art-scoreline {
  position: absolute;
  top: 22px;
  right: 18px;
  display: flex;
  gap: 5px;
}

.art-scoreline i {
  width: 22px;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 247, 232, 0.8);
}

.mini-badge,
.category-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  line-height: 1;
}

.mini-badge {
  min-width: 38px;
  height: 34px;
  border: 2px solid rgba(255, 247, 232, 0.86);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.mini-flag {
  position: relative;
  overflow: hidden;
  background: #fffaf0;
  color: #10221a;
  font-size: 0.64rem;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mini-flag span,
.category-flag span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: 28px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  color: #10221a;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.16);
}

.mini-flag::before,
.category-flag::before,
.mini-flag::after,
.category-flag::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
}

.flag-argentina {
  background: linear-gradient(180deg, #74bce8 0 33%, #fffaf0 34% 66%, #74bce8 67% 100%);
}

.flag-argentina::after {
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f1b84b;
  transform: translate(-50%, -50%);
}

.flag-brazil {
  background: #249f58;
}

.flag-brazil::before {
  inset: 18% 12%;
  background: #f2cf47;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.flag-brazil::after {
  inset: 50% auto auto 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #244aa5;
  transform: translate(-50%, -50%);
}

.flag-france {
  background: linear-gradient(90deg, #26499c 0 33%, #fffaf0 34% 66%, #d53a38 67% 100%);
}

.flag-spain {
  background: linear-gradient(180deg, #c7192c 0 25%, #f1c84b 26% 74%, #c7192c 75% 100%);
}

.flag-portugal {
  background: linear-gradient(90deg, #187744 0 42%, #d22335 43% 100%);
}

.flag-portugal::after {
  inset: 50% auto auto 42%;
  width: 11px;
  height: 11px;
  border: 2px solid #f1c84b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.flag-england {
  background: #fffaf0;
}

.flag-england::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 42%, #c9152f 43% 57%, transparent 58% 100%),
    linear-gradient(180deg, transparent 0 42%, #c9152f 43% 57%, transparent 58% 100%);
}

.mini-mark {
  background: #f1b84b;
  color: #231908;
  font-size: 0.7rem;
}

.mini-crest,
.category-crest {
  color: #fff7e8;
  font-size: 0.66rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.crest-barcelona {
  background: linear-gradient(135deg, #8b1538 0 48%, #234f9b 49% 100%);
  color: #ffd45d;
}

.crest-real-madrid {
  background: linear-gradient(135deg, #fff7e8 0 58%, #d9b85b 59% 100%);
  color: #26315c;
  text-shadow: none;
}

.crest-man-city {
  background: linear-gradient(135deg, #8ed2ef 0 60%, #ffffff 61% 100%);
  color: #1b5470;
  text-shadow: none;
}

.crest-liverpool {
  background: linear-gradient(135deg, #c9152f 0 62%, #f4d35e 63% 100%);
  color: #fff7e8;
}

.crest-juventus {
  background: linear-gradient(90deg, #111 0 32%, #f6f0df 33% 66%, #111 67% 100%);
  color: #f1b84b;
}

.crest-psg {
  background: linear-gradient(135deg, #172653 0 58%, #c81e3a 59% 100%);
  color: #fff7e8;
}

.crest-bayern {
  background: linear-gradient(135deg, #c9132f 0 55%, #1c66b1 56% 100%);
  color: #fff7e8;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.catalog-tools input,
.guess-form input {
  min-height: 44px;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.1);
  color: var(--ink);
  padding: 0 13px;
}

.catalog-tools input::placeholder,
.guess-form input::placeholder {
  color: color-mix(in srgb, var(--muted), transparent 20%);
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.08);
}

.segmented button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.segmented button.is-active {
  background: var(--surface);
  color: var(--ink-on-light);
}

.game-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.game-card .game-art {
  min-height: 160px;
  border-radius: 8px 8px 0 0;
}

.game-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--amber);
  text-transform: uppercase;
}

.game-card p {
  min-height: 48px;
  margin: 0;
  line-height: 1.45;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

.stat-strip div {
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.08);
}

.stat-strip dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-strip dd {
  margin: 3px 0 0;
  font-size: 1.18rem;
  font-weight: 900;
}

.primary-link,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.primary-link,
.btn-primary {
  border: 1px solid transparent;
  background: var(--primary);
  color: #07120e;
}

.primary-link:hover,
.btn-primary:hover {
  background: #56d894;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-secondary:hover {
  background: rgba(246, 240, 223, 0.1);
}

.game-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
}

.game-hero .back-link {
  grid-column: 1 / -1;
  width: fit-content;
}

.game-root {
  margin-top: 18px;
}

.play-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 16px;
}

.play-panel,
.side-panel {
  padding: 18px;
}

.play-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.score-pill {
  flex: 0 0 auto;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--ink-on-light);
}

.guess-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 10px;
  margin: 18px 0 10px;
}

.guess-form button,
.draw-card button,
.result-panel button {
  padding: 0 14px;
}

.status-line {
  min-height: 26px;
  margin: 0 0 14px;
  font-weight: 800;
}

.answer-board {
  display: grid;
  gap: 8px;
}

.tenaball-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-board {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.answer-slot {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.07);
  overflow: hidden;
}

.answer-slot span {
  display: grid;
  align-self: stretch;
  place-items: center;
  background: rgba(246, 240, 223, 0.08);
  color: var(--amber);
  font-weight: 900;
}

.answer-slot strong {
  min-width: 0;
  padding: 10px 12px;
  overflow-wrap: anywhere;
}

.answer-slot.is-found {
  border-color: rgba(52, 199, 123, 0.7);
  background: rgba(52, 199, 123, 0.18);
}

.answer-slot.is-missed {
  border-color: rgba(232, 111, 81, 0.55);
  background: rgba(232, 111, 81, 0.12);
}

.side-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
}

.side-panel h2 {
  font-size: 2.3rem;
}

.side-panel p {
  margin: 0;
  line-height: 1.5;
}

.draw-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.08);
}

.draw-card > span {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.draw-player {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.draw-card strong {
  min-width: 0;
  font-size: 1.3rem;
  overflow-wrap: anywhere;
}

.draw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bingo-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.bingo-cell {
  display: grid;
  grid-template-rows: auto minmax(34px, 1fr) auto;
  gap: 9px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 223, 0.08);
  color: var(--ink);
  padding: 10px;
  text-align: left;
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid rgba(255, 247, 232, 0.78);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.category-flag {
  position: relative;
  overflow: hidden;
  font-size: 0.7rem;
}

.category-mark {
  background: var(--amber);
  color: #231908;
  font-size: 0.74rem;
}

.draw-badges .category-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.draw-badges .category-flag {
  font-size: 0.52rem;
}

.draw-badges .category-flag span {
  min-width: 23px;
  height: 15px;
}

.draw-badges .category-crest,
.draw-badges .category-mark {
  font-size: 0.58rem;
}

.category-label {
  font-weight: 900;
  line-height: 1.15;
  align-self: start;
}

.bingo-cell strong {
  min-height: 32px;
  color: var(--amber);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.bingo-cell:hover:not(:disabled) {
  border-color: var(--primary);
  background: rgba(52, 199, 123, 0.14);
}

.bingo-cell.is-filled {
  background: rgba(52, 199, 123, 0.2);
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.noscript {
  margin: 20px;
  padding: 14px;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .today-band,
  .game-hero,
  .play-layout {
    grid-template-columns: 1fr;
  }

  .featured-games,
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-tools {
    justify-content: flex-start;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-kicker {
    display: none;
  }

  .app,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .today-band,
  .game-hero,
  .message-panel {
    padding: 20px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.38rem;
  }

  .featured-games,
  .game-grid,
  .tenaball-board {
    grid-template-columns: 1fr;
  }

  .guess-form,
  .draw-card {
    grid-template-columns: 1fr;
  }

  .guess-form input,
  .catalog-tools input {
    min-width: 0;
    width: 100%;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    flex: 1;
  }

  .bingo-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bingo-cell {
    min-height: 106px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
