:root {
  --ink: #183846;
  --ink-soft: #58727a;
  --paper: #fffaf0;
  --paper-deep: #f6e8cf;
  --cream: #fff7e8;
  --yellow: #f5be4f;
  --yellow-light: #ffe6a4;
  --coral: #ef725f;
  --coral-dark: #c9554f;
  --teal: #2f8a8c;
  --blue: #75acd2;
  --green: #8dbd79;
  --line: rgba(24, 56, 70, .13);
  --shadow: 0 18px 48px rgba(43, 71, 66, .13);
  --round-xl: 32px;
  --round-lg: 22px;
  --round-md: 16px;
  --font-display: 'Baloo 2', 'Arial Rounded MT Bold', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', 'Trebuchet MS', sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--cream); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  background:
    radial-gradient(circle at 8% 12%, rgba(245,190,79,.18) 0 70px, transparent 71px),
    radial-gradient(circle at 94% 36%, rgba(117,172,210,.13) 0 90px, transparent 91px),
    var(--cream);
}
button { font: inherit; color: inherit; }
button:focus-visible { outline: 4px solid rgba(47,138,140,.35); outline-offset: 3px; }
[hidden] { display: none !important; }

.app-shell { width: min(1180px, 100%); margin: 0 auto; padding: 18px 24px 56px; }
.topbar { display: flex; align-items: center; min-height: 52px; margin-bottom: 20px; }
.brand {
  display: inline-flex; align-items: center; gap: 9px; padding: 5px 0;
  border: 0; background: transparent; cursor: pointer; font-family: var(--font-display);
  font-size: 25px; font-weight: 800; letter-spacing: -.04em;
}
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 12px 12px 12px 4px; color: var(--ink); background: var(--yellow); font-size: 19px; transform: rotate(-8deg); }
.brand-dash { color: var(--coral); }
.back-button, .small-icon-button {
  display: grid; place-items: center; width: 46px; height: 46px; border: 1.5px solid var(--line);
  border-radius: 50%; background: rgba(255,255,255,.54); cursor: pointer; font-size: 24px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.back-button { margin-right: 13px; font-size: 27px; line-height: 1; }
.back-button:hover, .small-icon-button:hover { transform: translateY(-2px); background: white; border-color: rgba(24,56,70,.3); }
.topbar-stats { display: flex; align-items: center; gap: 7px; margin-left: auto; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.topbar-stats strong { color: var(--ink); }
.tiny-road { color: var(--coral); font-size: 24px; transform: rotate(-12deg); }

.hero-card {
  position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 28px; align-items: center;
  min-height: 430px; overflow: hidden; padding: clamp(30px, 5vw, 62px);
  border: 2px solid rgba(24,56,70,.08); border-radius: var(--round-xl); background: #dcefea; box-shadow: var(--shadow);
}
.hero-card::before { content: ''; position: absolute; inset: auto -8% -45% -8%; height: 52%; background: #71888a; transform: rotate(-4deg); opacity: .2; }
.hero-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(24,56,70,.05) .8px, transparent .8px); background-size: 13px 13px; mix-blend-mode: multiply; opacity: .35; }
.hero-copy, .hero-sheet { position: relative; z-index: 1; }
.eyebrow, .section-kicker { margin: 0 0 9px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 8px; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(239,114,95,.16); }
h1, h2, p { text-wrap: pretty; }
h1, h2 { font-family: var(--font-display); }
.hero-copy h1 { max-width: 580px; margin: 0; font-size: clamp(52px, 7vw, 84px); line-height: .86; letter-spacing: -.055em; }
.hero-copy h1 span { color: var(--coral); }
.hero-text { max-width: 460px; margin: 27px 0 20px; color: var(--ink-soft); font-size: 17px; font-weight: 700; line-height: 1.5; }
.hero-text strong { color: var(--coral-dark); }
.hero-note { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px; color: var(--ink); border-radius: 12px 18px 18px 5px; background: rgba(255,250,240,.72); font-size: 14px; font-weight: 900; transform: rotate(-1deg); }
.note-icon { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; color: #9a6b13; background: var(--yellow-light); font-size: 18px; }
.hero-sheet { justify-self: center; width: min(100%, 390px); padding: 24px 24px 23px; border: 1.5px solid rgba(24,56,70,.18); border-radius: 9px 13px 6px 16px; background: var(--paper); box-shadow: 10px 15px 0 rgba(24,56,70,.08); transform: rotate(4deg); }
.sheet-title { margin-bottom: 11px; color: var(--ink); font-family: var(--font-display); font-size: clamp(22px, 4vw, 31px); font-weight: 800; letter-spacing: .045em; text-align: center; }
.mini-board { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; padding: 8px; border: 1px dashed rgba(24,56,70,.21); border-radius: 8px; background: rgba(255,255,255,.45); }
.mini-board span { display: grid; place-items: center; min-height: 64px; overflow: hidden; border: 1px dashed rgba(24,56,70,.15); border-radius: 7px; background: #edf5ed; font-size: 31px; filter: saturate(.9); }
.mini-board span:nth-child(4n+2), .mini-board span:nth-child(4n+3) { background: #fff3df; }
.mini-board img { display: block; width: 100%; height: 100%; min-height: 64px; object-fit: cover; }
.mini-board img[src$=".svg"] { padding: 9px; object-fit: contain; background: rgba(255,255,255,.88); }
.sheet-caption { margin-top: 12px; color: var(--ink-soft); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-align: center; }
.red-scribble { position: absolute; z-index: 2; width: 108px; height: 7px; border-radius: 50%; background: var(--coral); opacity: .9; }
.scribble-one { top: 27%; left: 7%; transform: rotate(17deg); }
.scribble-two { right: 2%; bottom: 26%; transform: rotate(-20deg); }
.hero-sun { position: absolute; top: 24px; left: 46%; z-index: 1; color: #d99c2d; font-size: 38px; transform: rotate(11deg); }
.hero-cloud { position: absolute; z-index: 0; width: 92px; height: 22px; border-radius: 20px; background: rgba(255,250,240,.66); }
.hero-cloud::before, .hero-cloud::after { content: ''; position: absolute; bottom: 5px; border-radius: 50%; background: inherit; }
.hero-cloud::before { left: 16px; width: 36px; height: 36px; }
.hero-cloud::after { left: 44px; width: 26px; height: 26px; }
.cloud-one { top: 72px; right: 48%; transform: scale(.65); }
.cloud-two { top: 39%; right: -12px; transform: scale(.8); opacity: .55; }

.category-section { padding: 58px 3px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.section-heading h2, .mode-intro h2 { margin: 0; font-size: 36px; line-height: .95; letter-spacing: -.04em; }
.section-help { margin: 0 0 3px; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { position: relative; min-height: 182px; padding: 20px 18px 17px; overflow: hidden; border: 1.5px solid transparent; border-radius: var(--round-lg); text-align: left; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.category-card:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 0 15px 22px rgba(43,71,66,.13); }
.category-card:active { transform: translateY(-1px) scale(.99); }
.category-card::after { content: ''; position: absolute; right: -21px; bottom: -32px; width: 110px; height: 110px; border: 18px solid rgba(255,250,240,.27); border-radius: 50%; }
.category-card.blue { background: #cde5ed; border-color: #b6d7e2; }
.category-card.green { background: #dce9ce; border-color: #c6dcb6; }
.category-card.coral { background: #f7d3c4; border-color: #efc2b2; }
.category-card.gold { background: #f9e0a7; border-color: #f1d18a; }
.category-icon { display: grid; place-items: center; width: 57px; height: 57px; margin-bottom: 19px; overflow: hidden; border-radius: 20px 20px 20px 6px; background: rgba(255,250,240,.74); font-size: 31px; transform: rotate(-5deg); }
.category-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.category-number { position: absolute; top: 18px; right: 18px; color: rgba(24,56,70,.45); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.category-card h3 { position: relative; z-index: 1; margin: 0 0 5px; font-family: var(--font-display); font-size: 23px; line-height: .95; letter-spacing: -.025em; }
.category-card p { position: relative; z-index: 1; max-width: 185px; margin: 0; color: var(--ink-soft); font-size: 12px; font-weight: 800; line-height: 1.3; }

.mode-view { padding-top: 24px; }
.journey-header { position: relative; display: flex; align-items: center; gap: 17px; padding: 27px 30px; border-radius: var(--round-xl); background: #dcefea; box-shadow: var(--shadow); }
.route-badge { display: grid; place-items: center; width: 76px; height: 76px; flex: 0 0 76px; overflow: hidden; border-radius: 24px 24px 24px 7px; background: var(--yellow); font-size: 40px; transform: rotate(-5deg); }
.route-badge img { display: block; width: 100%; height: 100%; object-fit: cover; }
.journey-header h1 { margin: 0; font-size: clamp(38px, 5vw, 55px); line-height: .9; letter-spacing: -.05em; }
.journey-header p:last-child { margin: 6px 0 0; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.text-button { margin-left: auto; align-self: flex-start; padding: 7px 0; border: 0; border-bottom: 2px solid rgba(24,56,70,.25); background: transparent; color: var(--ink-soft); cursor: pointer; font-size: 13px; font-weight: 900; }
.text-button:hover { color: var(--coral-dark); border-color: var(--coral); }
.mode-intro { margin: 58px 0 24px; }
.mode-intro p:last-child { margin: 12px 0 0; color: var(--ink-soft); font-weight: 700; }
.mode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; }
.mode-card { position: relative; min-height: 236px; padding: 28px 30px; overflow: hidden; border: 1.5px solid var(--line); border-radius: var(--round-lg); background: var(--paper); text-align: left; cursor: pointer; box-shadow: 0 7px 0 rgba(24,56,70,.06); transition: transform .2s ease, box-shadow .2s ease; }
.mode-card:hover { transform: translateY(-4px); box-shadow: 0 13px 0 rgba(24,56,70,.07); }
.mode-card::after { content: ''; position: absolute; right: -30px; bottom: -44px; width: 140px; height: 140px; border: 23px solid rgba(245,190,79,.18); border-radius: 50%; }
.mode-card.all::after { border-color: rgba(47,138,140,.14); }
.mode-illustration { display: flex; gap: 5px; align-items: end; height: 45px; margin-bottom: 18px; }
.mode-illustration span { display: block; width: 34px; height: 34px; border-radius: 9px; border: 2px solid var(--ink); background: var(--yellow-light); transform: rotate(-4deg); }
.mode-illustration span:nth-child(2) { height: 41px; background: #f6c6ae; transform: rotate(5deg); }
.mode-illustration span:nth-child(3) { height: 29px; background: #c9e0d1; transform: rotate(-8deg); }
.mode-illustration i { position: relative; width: 15px; height: 5px; margin: 0 0 5px -16px; border-radius: 5px; background: var(--coral); transform: rotate(-45deg); }
.mode-card.all .mode-illustration span { width: 28px; height: 28px; border-radius: 50%; background: #c6e2dc; }
.mode-card.all .mode-illustration span:nth-child(2) { background: #f6c6ae; }
.mode-card.all .mode-illustration span:nth-child(3) { background: var(--yellow-light); }
.mode-card.all .mode-illustration i { width: 13px; margin-left: -12px; transform: rotate(-45deg); }
.mode-card h3 { position: relative; z-index: 1; margin: 0 0 8px; font-family: var(--font-display); font-size: 30px; line-height: .9; letter-spacing: -.035em; }
.mode-card p { position: relative; z-index: 1; max-width: 320px; margin: 0; color: var(--ink-soft); font-size: 14px; font-weight: 700; line-height: 1.4; }
.mode-arrow { position: absolute; right: 26px; bottom: 22px; z-index: 2; color: var(--coral); font-size: 26px; font-weight: 900; }

.game-view { padding-top: 23px; }
.game-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 23px; }
.game-title-block h1 { margin: 0; font-size: clamp(44px, 6vw, 70px); line-height: .85; letter-spacing: -.06em; }
.game-actions { display: flex; align-items: center; gap: 10px; }
.outline-button, .primary-button, .secondary-button { min-height: 46px; padding: 0 17px; border: 1.5px solid var(--line); border-radius: 13px; cursor: pointer; font-weight: 900; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.outline-button { background: rgba(255,255,255,.5); color: var(--ink-soft); font-size: 13px; }
.outline-button:hover, .secondary-button:hover { background: white; transform: translateY(-2px); }
.progress-card { max-width: 760px; padding: 18px 20px 16px; border: 1.5px solid var(--line); border-radius: var(--round-md); background: rgba(255,255,255,.56); }
.progress-topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.mode-pill { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 8px; color: var(--ink); background: var(--yellow-light); font-size: 12px; font-weight: 900; }
.progress-copy { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.progress-copy strong { color: var(--coral-dark); font-size: 16px; }
.progress-track { height: 9px; overflow: hidden; border-radius: 8px; background: #e5e9de; }
.progress-fill { width: 0%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--yellow), var(--coral)); transition: width .3s ease; }
.game-instruction { margin: 11px 0 0; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.bingo-paper { position: relative; max-width: 900px; margin: 32px auto 0; padding: 26px clamp(14px, 3vw, 35px) 38px; border: 1.5px solid rgba(24,56,70,.15); border-radius: 10px 16px 8px 14px; background: var(--paper); box-shadow: var(--shadow); transform: rotate(-.45deg); }
.bingo-paper::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(24,56,70,.06) .7px, transparent .7px); background-size: 11px 11px; opacity: .32; }
.paper-heading { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 5px 15px; color: var(--ink-soft); font-family: var(--font-display); font-size: clamp(14px, 2vw, 19px); font-weight: 800; letter-spacing: .04em; }
.paper-route { color: var(--teal); }
.paper-rule { font-size: .72em; letter-spacing: .08em; }
.board { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.bingo-tile { position: relative; display: flex; min-width: 0; min-height: 116px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 9px 5px 8px; border: 1.5px dashed rgba(24,56,70,.22); border-radius: 12px 9px 13px 8px; background: rgba(239,246,237,.57); cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.bingo-tile:nth-child(4n+2), .bingo-tile:nth-child(4n+3) { background: rgba(255,244,224,.68); }
.bingo-tile:hover { z-index: 2; border-color: var(--teal); background: #fff9eb; transform: translateY(-3px) rotate(-1deg); }
.bingo-tile:active { transform: translateY(0) scale(.97); }
.tile-picture { display: grid; place-items: center; width: 72px; height: 67px; overflow: hidden; border-radius: 8px; line-height: 1; transition: transform .2s ease, filter .2s ease; }
.tile-image { display: block; width: 100%; height: 100%; border-radius: 7px; object-fit: cover; filter: saturate(.92); }
.tile-image.is-sign { padding: 5px; object-fit: contain; background: rgba(255,255,255,.9); }
.bingo-tile.is-checked { border-style: solid; border-color: rgba(239,114,95,.62); background: #f9ddd0; }
.bingo-tile.is-checked .tile-picture { filter: grayscale(.7) saturate(.5); transform: scale(.92); }
.bingo-tile.is-checked::before { content: '✓'; position: absolute; top: 5px; right: 6px; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: white; background: var(--coral); font-size: 14px; font-weight: 900; }
.bingo-tile.is-checked::after { content: ''; position: absolute; top: 50%; left: 7%; width: 86%; height: 5px; border-radius: 50%; background: var(--coral); box-shadow: 0 1px 0 rgba(164,65,57,.2); transform: rotate(-8deg); opacity: .92; }
.bingo-tile.is-winning { border-color: var(--coral); background: #ffe2ae; box-shadow: 0 0 0 4px rgba(239,114,95,.17); animation: winning-pop .7s ease both; }
.tile-label { max-width: 100%; overflow-wrap: anywhere; color: var(--ink); font-size: 11px; font-weight: 900; line-height: 1.1; text-align: center; }
.paper-road { position: absolute; right: 5%; bottom: 8px; left: 5%; z-index: 1; display: flex; justify-content: space-around; height: 4px; border-radius: 99px; background: #637477; opacity: .65; }
.paper-road span { width: 8%; height: 3px; background: var(--paper); }

.win-layer { position: fixed; inset: 0; z-index: 10; display: grid; place-items: center; padding: 20px; background: rgba(24,56,70,.42); backdrop-filter: blur(5px); }
.win-card { position: relative; width: min(440px, 100%); padding: 43px 30px 29px; border: 2px solid rgba(24,56,70,.1); border-radius: 28px; background: var(--paper); box-shadow: 0 24px 80px rgba(24,56,70,.28); text-align: center; animation: card-in .42s cubic-bezier(.2,.85,.3,1.2) both; }
.win-star { position: absolute; top: -36px; left: calc(50% - 36px); display: grid; place-items: center; width: 72px; height: 72px; color: var(--ink); background: var(--yellow); border: 5px solid var(--cream); border-radius: 50%; font-size: 39px; transform: rotate(-9deg); }
.win-card .section-kicker { margin-bottom: 3px; }
.win-card h2 { margin: 0; color: var(--coral); font-size: 68px; line-height: .85; letter-spacing: -.06em; }
.win-card p:not(.section-kicker) { margin: 16px auto 24px; max-width: 310px; color: var(--ink-soft); font-size: 15px; font-weight: 700; line-height: 1.4; }
.win-actions { display: flex; justify-content: center; gap: 10px; }
.primary-button { border-color: var(--coral); color: white; background: var(--coral); box-shadow: 0 4px 0 var(--coral-dark); }
.primary-button:hover { background: #f5826f; transform: translateY(-2px); box-shadow: 0 6px 0 var(--coral-dark); }
.secondary-button { background: transparent; color: var(--ink-soft); }
.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti span { position: absolute; top: -20px; width: 12px; height: 22px; border-radius: 3px; animation: confetti-fall 1.9s ease-in forwards; }
.confetti span:nth-child(3n) { background: var(--coral); }
.confetti span:nth-child(3n+1) { background: var(--yellow); }
.confetti span:nth-child(3n+2) { background: var(--teal); }

@keyframes card-in { from { opacity: 0; transform: translateY(24px) scale(.92); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes winning-pop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes confetti-fall { to { top: 110%; transform: translateX(100px) rotate(500deg); opacity: 0; } }

@media (max-width: 820px) {
  .app-shell { padding: 16px 18px 42px; }
  .hero-card { grid-template-columns: 1fr; min-height: 0; padding: 38px 28px 30px; }
  .hero-sheet { width: min(100%, 380px); margin: 10px auto 0; }
  .hero-sun { top: 19px; left: auto; right: 23%; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .app-shell { padding: 12px 13px 32px; }
  .topbar { margin-bottom: 13px; }
  .brand { font-size: 22px; }
  .brand-mark { width: 28px; height: 28px; font-size: 17px; }
  .back-button { width: 42px; height: 42px; margin-right: 9px; }
  .topbar-stats { font-size: 12px; }
  .hero-card { padding: 34px 20px 24px; border-radius: 25px; }
  .hero-copy h1 { font-size: 56px; }
  .hero-text { margin-top: 22px; font-size: 15px; }
  .hero-note { font-size: 12px; }
  .hero-sheet { padding: 17px 14px 17px; }
  .mini-board { gap: 5px; padding: 6px; }
  .mini-board span { min-height: 55px; font-size: 25px; }
  .hero-sun { top: 12px; right: 13%; font-size: 28px; }
  .category-section { padding-top: 40px; }
  .section-heading { align-items: start; flex-direction: column; gap: 5px; margin-bottom: 17px; }
  .section-heading h2, .mode-intro h2 { font-size: 32px; }
  .category-grid { gap: 9px; }
  .category-card { min-height: 170px; padding: 15px 13px 14px; border-radius: 17px; }
  .category-icon { width: 48px; height: 48px; margin-bottom: 16px; font-size: 26px; border-radius: 16px 16px 16px 5px; }
  .category-number { top: 15px; right: 13px; font-size: 9px; }
  .category-card h3 { font-size: 20px; }
  .category-card p { font-size: 10px; }
  .journey-header { align-items: flex-start; flex-wrap: wrap; gap: 12px; padding: 20px; border-radius: 23px; }
  .route-badge { width: 56px; height: 56px; flex-basis: 56px; border-radius: 18px 18px 18px 5px; font-size: 29px; }
  .journey-header h1 { font-size: 39px; }
  .journey-header p:last-child { margin-top: 3px; font-size: 11px; }
  .text-button { width: 100%; margin: 2px 0 0 68px; text-align: left; }
  .mode-intro { margin: 40px 0 18px; }
  .mode-grid { grid-template-columns: 1fr; gap: 12px; }
  .mode-card { min-height: 205px; padding: 23px 21px; }
  .mode-card h3 { font-size: 27px; }
  .mode-card p { font-size: 13px; }
  .game-view { padding-top: 15px; }
  .game-header { align-items: flex-start; flex-wrap: wrap; margin-bottom: 17px; }
  .game-title-block h1 { font-size: 51px; }
  .game-actions { width: 100%; justify-content: space-between; }
  .outline-button { min-height: 42px; font-size: 12px; }
  .small-icon-button { width: 42px; height: 42px; }
  .progress-card { padding: 14px 13px 13px; }
  .progress-topline { align-items: flex-start; flex-direction: column; gap: 7px; margin-bottom: 10px; }
  .progress-copy { font-size: 12px; }
  .game-instruction { font-size: 11px; }
  .bingo-paper { margin-top: 22px; padding: 18px 8px 32px; border-radius: 7px 12px 6px 11px; }
  .paper-heading { margin: 0 3px 11px; font-size: 12px; }
  .board { gap: 6px; }
  .bingo-tile { min-height: 91px; padding: 6px 3px; border-radius: 8px 7px 9px 6px; }
  .tile-picture { width: 43px; height: 43px; font-size: 29px; }
  .tile-label { font-size: 9px; }
  .bingo-tile.is-checked::before { top: 3px; right: 3px; width: 17px; height: 17px; font-size: 11px; }
  .bingo-tile.is-checked::after { left: 6%; width: 88%; height: 4px; }
  .win-card { padding: 39px 20px 23px; }
  .win-card h2 { font-size: 61px; }
  .win-actions { flex-direction: column; }
}

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