:root {
  color-scheme: light;
  --ink: #242321;
  --muted: #68635b;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #d9d0bd;
  --teal: #126c72;
  --teal-dark: #0a4e54;
  --coral: #c85a46;
  --gold: #e6ad35;
  --shadow: 0 18px 45px rgba(36, 35, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(90deg, rgba(18, 108, 114, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(200, 90, 70, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 30px 0 56px;
}

.site-header {
  display: grid;
  gap: 12px;
  align-content: end;
  min-height: 34vh;
  padding: 0 0 36px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
  background: var(--surface);
  color: var(--coral);
  font-size: 0.86rem;
  letter-spacing: 0;
  box-shadow: 5px 5px 0 var(--gold);
}

.eyebrow {
  margin: 18px 0 0;
  color: var(--coral);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 10vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.player-name-form {
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  margin-top: 12px;
}

.player-name-form label {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.player-name-form input {
  width: 100%;
  min-height: 46px;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  font-weight: 800;
  box-shadow: 5px 5px 0 rgba(230, 173, 53, 0.55);
}

.player-name-form input:focus {
  outline: 4px solid rgba(18, 108, 114, 0.2);
  outline-offset: 2px;
}

.player-name-form.is-required input {
  border-color: var(--coral);
  box-shadow: 5px 5px 0 rgba(201, 92, 69, 0.32);
}

.player-name-message {
  min-height: 1.25em;
  margin: 0;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 850;
}

.reveal-trigger {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0;
  border: 0;
  padding: 0 0 10px;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.reveal-trigger::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.reveal-trigger.is-holding::after {
  width: 100%;
  transition: width 3000ms linear;
}

.reveal-trigger:focus-visible {
  outline: 4px solid rgba(18, 108, 114, 0.24);
  outline-offset: 6px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
}

.game-card {
  min-height: 430px;
}

.game-card-link {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.game-card-link:hover,
.game-card-link:focus-visible {
  border-color: var(--teal);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(36, 35, 33, 0.18);
}

.game-art {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(18, 108, 114, 0.16), transparent 44%),
    linear-gradient(315deg, rgba(230, 173, 53, 0.24), transparent 46%),
    #f8f1e0;
}

.bingo-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 330px);
  aspect-ratio: 1;
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 10px 10px 0 rgba(18, 108, 114, 0.22);
}

.bingo-board span {
  display: grid;
  place-items: center;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: clamp(0.58rem, 2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bingo-board span:nth-child(5n) {
  border-right: 0;
}

.bingo-board span:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.bingo-board span:nth-child(n + 6) {
  background:
    radial-gradient(circle, rgba(36, 35, 33, 0.12) 14%, transparent 16%),
    #fffdf7;
  background-size: 18px 18px;
}

.bingo-board .is-hit {
  position: relative;
  background: #f4d6cf;
}

.bingo-board .is-hit::after {
  content: "";
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
}

.bingo-board .is-free {
  background: var(--teal);
  color: #ffffff;
  font-size: clamp(0.55rem, 1.8vw, 0.92rem);
}

.westie-card-art {
  background:
    linear-gradient(160deg, rgba(55, 109, 157, 0.16), transparent 42%),
    linear-gradient(25deg, rgba(46, 122, 87, 0.22), transparent 52%),
    #e6f7fb;
}

.westie-preview {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(#aee3ed 0 58%, #f4dfae 58% 69%, #2f7a57 69% 100%);
  box-shadow: 10px 10px 0 rgba(200, 90, 70, 0.2);
}

.runner-preview-sun,
.runner-preview-cloud,
.runner-preview-ground,
.runner-preview-obstacle,
.runner-preview-dog,
.runner-preview-dog span {
  position: absolute;
  display: block;
}

.runner-preview-sun {
  top: 22px;
  right: 30px;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
}

.runner-preview-cloud {
  width: 62px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.runner-preview-cloud::before,
.runner-preview-cloud::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.runner-preview-cloud::before {
  left: 10px;
  top: -10px;
  width: 28px;
  height: 28px;
}

.runner-preview-cloud::after {
  right: 9px;
  top: -7px;
  width: 23px;
  height: 23px;
}

.cloud-one {
  left: 26px;
  top: 34px;
}

.cloud-two {
  left: 124px;
  top: 58px;
  transform: scale(0.78);
}

.runner-preview-ground {
  left: 0;
  right: 0;
  bottom: 68px;
  height: 4px;
  background: var(--ink);
}

.runner-preview-obstacle {
  right: 55px;
  bottom: 72px;
  width: 28px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 7px 7px 3px 3px;
  background: var(--coral);
}

.runner-preview-obstacle::before,
.runner-preview-obstacle::after {
  position: absolute;
  content: "";
  background: var(--gold);
}

.runner-preview-obstacle::before {
  left: -8px;
  top: 17px;
  width: 9px;
  height: 10px;
  border: 2px solid var(--ink);
}

.runner-preview-obstacle::after {
  right: -8px;
  top: 17px;
  width: 9px;
  height: 10px;
  border: 2px solid var(--ink);
}

.runner-preview-dog {
  left: 58px;
  bottom: 72px;
  width: 118px;
  height: 78px;
}

.runner-preview-tail {
  left: 7px;
  top: 23px;
  width: 35px;
  height: 35px;
  border-top: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.runner-preview-body {
  left: 23px;
  top: 33px;
  width: 66px;
  height: 34px;
  border: 3px solid var(--ink);
  border-radius: 48% 46% 42% 42%;
  background: #fffdf4;
}

.runner-preview-leg {
  top: 58px;
  width: 9px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
}

.runner-preview-leg::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.leg-one {
  left: 37px;
  transform: rotate(15deg);
}

.leg-two {
  left: 66px;
  transform: rotate(-16deg);
}

.runner-preview-head {
  right: 6px;
  top: 18px;
  width: 42px;
  height: 38px;
  border: 3px solid var(--ink);
  border-radius: 50% 48% 45% 50%;
  background: #fffdf4;
}

.runner-preview-ear {
  top: 5px;
  width: 18px;
  height: 28px;
  border: 3px solid var(--ink);
  background: #eee7d9;
}

.ear-one {
  right: 31px;
  border-radius: 16px 6px 12px 6px;
  transform: rotate(-23deg);
}

.ear-two {
  right: 5px;
  border-radius: 6px 16px 6px 12px;
  transform: rotate(24deg);
}

.runner-preview-eye {
  top: 34px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.eye-one {
  right: 32px;
}

.eye-two {
  right: 16px;
}

.runner-preview-nose {
  right: 2px;
  top: 42px;
  width: 10px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.shepherd-card-art {
  background:
    linear-gradient(160deg, rgba(47, 125, 88, 0.22), transparent 42%),
    linear-gradient(25deg, rgba(227, 173, 56, 0.28), transparent 52%),
    #e5f5f6;
}

.bean-preview {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(#a9dce8 0 58%, #f2ddb2 58% 69%, #2f7d58 69% 100%);
  box-shadow: 10px 10px 0 rgba(18, 108, 114, 0.2);
}

.bean-preview-cloud,
.bean-preview-ground,
.bean-preview-gate,
.bean-preview-dog,
.bean-preview-dog span {
  position: absolute;
  display: block;
}

.bean-preview-cloud {
  width: 62px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.bean-preview-cloud::before,
.bean-preview-cloud::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.bean-preview-cloud::before {
  left: 10px;
  top: -10px;
  width: 28px;
  height: 28px;
}

.bean-preview-cloud::after {
  right: 9px;
  top: -7px;
  width: 23px;
  height: 23px;
}

.bean-preview .cloud-one {
  left: 24px;
  top: 36px;
}

.bean-preview .cloud-two {
  right: 94px;
  top: 62px;
  transform: scale(0.76);
}

.bean-preview-ground {
  left: 0;
  right: 0;
  bottom: 68px;
  height: 4px;
  background: var(--ink);
}

.bean-preview-gate {
  right: 68px;
  width: 12px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background:
    linear-gradient(90deg, #fffdf2 0 2px, var(--ink) 2px 3px, transparent 3px 4px),
    linear-gradient(90deg, transparent 4px, #fffdf2 4px 6px, var(--ink) 6px 7px, transparent 7px 8px),
    linear-gradient(90deg, transparent 8px, #fffdf2 8px 10px, var(--ink) 10px 11px, transparent 11px);
}

.bean-preview-gate::before,
.bean-preview-gate::after {
  position: absolute;
  left: -4px;
  right: -4px;
  height: 5px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #e8dfca;
  content: "";
}

.bean-preview-gate::before {
  top: 12px;
}

.bean-preview-gate::after {
  bottom: 12px;
}

.gate-top {
  top: -8px;
  height: 76px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
}

.gate-bottom {
  bottom: 72px;
  height: 66px;
  clip-path: polygon(0 14%, 50% 0, 100% 14%, 100% 100%, 0 100%);
}

.bean-preview-dog {
  left: 66px;
  bottom: 118px;
  width: 120px;
  height: 86px;
  transform: rotate(-9deg);
}

.bean-preview-tail {
  left: 6px;
  top: 30px;
  width: 35px;
  height: 35px;
  border-top: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.bean-preview-body {
  left: 24px;
  top: 39px;
  width: 68px;
  height: 34px;
  border: 3px solid var(--ink);
  border-radius: 48% 46% 42% 42%;
  background: #d7933c;
}

.bean-preview-saddle {
  left: 31px;
  top: 36px;
  width: 50px;
  height: 26px;
  border-radius: 50% 50% 42% 42%;
  background: var(--ink);
}

.bean-preview-leg {
  top: 62px;
  width: 9px;
  height: 24px;
  border-radius: 999px;
  background: #d7933c;
  box-shadow: inset 0 0 0 3px var(--ink);
}

.bean-preview-leg::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 19px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.bean-preview .leg-one {
  left: 38px;
  transform: rotate(24deg);
}

.bean-preview .leg-two {
  left: 67px;
  transform: rotate(-24deg);
}

.bean-preview-head {
  right: 5px;
  top: 20px;
  width: 43px;
  height: 39px;
  border: 3px solid var(--ink);
  border-radius: 50% 48% 45% 50%;
  background: #d7933c;
}

.bean-preview-ear {
  top: 2px;
  width: 18px;
  height: 32px;
  border: 3px solid var(--ink);
  background: var(--ink);
}

.bean-preview .ear-one {
  right: 32px;
  border-radius: 16px 6px 12px 6px;
  transform: rotate(-18deg);
}

.bean-preview .ear-two {
  right: 4px;
  border-radius: 6px 16px 6px 12px;
  transform: rotate(18deg);
}

.bean-preview-mask {
  right: -1px;
  top: 35px;
  width: 27px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
}

.bean-preview-eye {
  right: 24px;
  top: 36px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.bean-preview-nose {
  right: -1px;
  top: 45px;
  width: 10px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.molly-card-art {
  background:
    linear-gradient(155deg, rgba(18, 108, 114, 0.18), transparent 43%),
    linear-gradient(25deg, rgba(201, 90, 70, 0.22), transparent 52%),
    #e8f4ea;
}

.molly-preview {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #276b50 0 18%, #e7d7b9 18% 82%, #2f7a57 82% 100%);
  box-shadow: 10px 10px 0 rgba(18, 108, 114, 0.2);
}

.molly-preview-home,
.molly-preview-store,
.molly-preview-lane,
.molly-preview-neighbor,
.molly-preview-vet,
.molly-preview-poop,
.molly-preview-dog,
.molly-preview-dog span {
  position: absolute;
  display: block;
}

.molly-preview-lane {
  left: 20%;
  right: 20%;
  height: 3px;
  background: rgba(36, 35, 33, 0.16);
}

.molly-preview .lane-one {
  top: 72px;
}

.molly-preview .lane-two {
  top: 150px;
}

.molly-preview-home {
  left: 17px;
  bottom: 24px;
  width: 54px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fff6dd;
}

.molly-preview-home::before {
  position: absolute;
  left: -5px;
  top: -23px;
  width: 60px;
  height: 32px;
  background: var(--coral);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
}

.molly-preview-store {
  right: 17px;
  top: 18px;
  width: 74px;
  height: 58px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fff8e8;
}

.molly-preview-store::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
  border-bottom: 2px solid var(--ink);
  background: repeating-linear-gradient(90deg, var(--teal) 0 12px, var(--gold) 12px 24px);
  content: "";
}

.molly-preview-store::after {
  position: absolute;
  left: 27px;
  bottom: 0;
  width: 20px;
  height: 27px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
  content: "";
}

.molly-preview-neighbor {
  width: 32px;
  height: 46px;
}

.molly-preview-neighbor::before {
  position: absolute;
  left: 7px;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #d79a68;
  content: "";
}

.molly-preview-neighbor::after {
  position: absolute;
  left: 5px;
  top: 20px;
  width: 22px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  content: "";
}

.good-neighbor {
  left: 70px;
  top: 64px;
}

.good-neighbor::after {
  background: #2f7a57;
}

.bad-neighbor {
  right: 84px;
  top: 126px;
}

.bad-neighbor::after {
  background: var(--coral);
}

.molly-preview-vet {
  left: 176px;
  top: 44px;
  width: 34px;
  height: 54px;
}

.molly-preview-vet::before {
  position: absolute;
  left: 8px;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #d79a68;
  content: "";
}

.molly-preview-vet::after {
  position: absolute;
  left: 4px;
  top: 20px;
  width: 26px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: #9ddff3;
  content: "";
}

.molly-preview-poop {
  left: 210px;
  bottom: 54px;
  width: 24px;
  height: 17px;
}

.molly-preview-poop::before,
.molly-preview-poop::after {
  position: absolute;
  bottom: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #6d4328;
  content: "";
}

.molly-preview-poop::before {
  left: 0;
  width: 14px;
  height: 12px;
}

.molly-preview-poop::after {
  right: 0;
  width: 16px;
  height: 15px;
}

.molly-preview-dog {
  left: 130px;
  bottom: 46px;
  width: 76px;
  height: 84px;
}

.molly-preview-tail {
  left: 33px;
  bottom: 2px;
  width: 30px;
  height: 30px;
  border-right: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-26deg);
}

.molly-preview-body {
  left: 19px;
  top: 28px;
  width: 38px;
  height: 46px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #11110f;
}

.molly-preview-head {
  left: 14px;
  top: 2px;
  width: 48px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #11110f;
}

.molly-preview-ear {
  top: 8px;
  width: 16px;
  height: 30px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #090908;
}

.molly-preview .ear-one {
  left: 2px;
  transform: rotate(-25deg);
}

.molly-preview .ear-two {
  right: 2px;
  transform: rotate(25deg);
}

.molly-preview-eye {
  top: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff8e8;
}

.molly-preview .eye-one {
  left: 27px;
}

.molly-preview .eye-two {
  right: 27px;
}

.molly-preview-nose {
  left: 33px;
  top: 28px;
  width: 10px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.molly-preview-collar {
  left: 20px;
  top: 41px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--teal);
}

.golden-card-art {
  background:
    linear-gradient(155deg, rgba(74, 143, 193, 0.22), transparent 44%),
    linear-gradient(25deg, rgba(230, 173, 53, 0.26), transparent 52%),
    #d6f3f7;
}

.golden-preview {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(#8bd3e9 0 45%, #d8f2f6 45% 72%, #fff0bd 100%);
  box-shadow: 10px 10px 0 rgba(18, 108, 114, 0.2);
}

.fall-preview-cloud,
.fall-preview-line,
.fall-preview-enemy,
.fall-preview-dog,
.fall-preview-dog span {
  position: absolute;
  display: block;
}

.fall-preview-cloud {
  width: 66px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.fall-preview-cloud::before,
.fall-preview-cloud::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.fall-preview-cloud::before {
  left: 11px;
  top: -10px;
  width: 28px;
  height: 28px;
}

.fall-preview-cloud::after {
  right: 9px;
  top: -7px;
  width: 23px;
  height: 23px;
}

.cloud-top {
  left: 24px;
  top: 28px;
}

.cloud-low {
  right: 24px;
  top: 90px;
  transform: scale(0.78);
}

.fall-preview-line {
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.line-one {
  left: 74px;
  top: 84px;
  height: 82px;
}

.line-two {
  right: 92px;
  top: 42px;
  height: 112px;
}

.line-three {
  right: 42px;
  top: 128px;
  height: 70px;
}

.fall-preview-enemy {
  bottom: 34px;
  border: 3px solid var(--ink);
}

.enemy-one {
  left: 44px;
  width: 48px;
  height: 34px;
  border-radius: 10px;
  background: #4a6f91;
}

.enemy-one::before {
  position: absolute;
  left: 10px;
  bottom: -10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 18px 0 0 var(--ink);
  content: "";
}

.enemy-two {
  right: 50px;
  width: 34px;
  height: 52px;
  border-radius: 50% 50% 6px 6px;
  background: var(--coral);
}

.enemy-two::before {
  position: absolute;
  left: -9px;
  right: -9px;
  bottom: -8px;
  height: 10px;
  border-radius: 5px;
  background: var(--ink);
  content: "";
}

.fall-preview-dog {
  left: 128px;
  top: 54px;
  width: 76px;
  height: 116px;
  transform: rotate(9deg);
}

.fall-preview-tail {
  left: 31px;
  top: 0;
  width: 14px;
  height: 35px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #c98225;
  transform: rotate(-12deg);
}

.fall-preview-body {
  left: 19px;
  top: 28px;
  width: 38px;
  height: 50px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #e1a13d;
}

.fall-preview-paw {
  width: 14px;
  height: 30px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #d39031;
}

.paw-one {
  left: 5px;
  top: 36px;
  transform: rotate(-38deg);
}

.paw-two {
  right: 5px;
  top: 35px;
  transform: rotate(38deg);
}

.paw-three {
  left: 8px;
  top: 74px;
  transform: rotate(-18deg);
}

.paw-four {
  right: 8px;
  top: 72px;
  transform: rotate(18deg);
}

.fall-preview-head {
  left: 14px;
  top: 67px;
  width: 48px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #e1a13d;
}

.fall-preview-ear {
  top: 64px;
  width: 17px;
  height: 32px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #b87524;
}

.fall-ear-one {
  left: 4px;
  transform: rotate(-26deg);
}

.fall-ear-two {
  right: 4px;
  transform: rotate(26deg);
}

.fall-preview-eye {
  top: 82px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.fall-eye-one {
  left: 28px;
}

.fall-eye-two {
  right: 28px;
}

.fall-preview-nose {
  left: 33px;
  top: 95px;
  width: 10px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.game-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  min-height: 138px;
  padding: 24px;
}

.game-type {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.game-card-link:hover .play-button,
.game-card-link:focus-visible .play-button {
  background: var(--teal-dark);
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 22px;
  }

  .site-header {
    min-height: 28vh;
    padding-bottom: 26px;
  }

  .game-card {
    min-height: 0;
  }

  .game-card-link {
    grid-template-rows: auto auto;
  }

  .game-art {
    min-height: 220px;
    padding: 18px;
  }

  .game-copy {
    display: grid;
    gap: 18px;
    align-items: stretch;
    min-height: 0;
    padding: 20px;
  }

  .play-button {
    width: 100%;
  }
}
