:root {
  --ink: #20201c;
  --paper: #fffdf3;
  --yellow: #ffe34a;
  --blue: #add8ef;
  --pink: #f3b8d2;
  --line: 2px solid var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
textarea:focus-visible {
  outline: 3px solid #3c67c8;
  outline-offset: 5px;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
button,
a {
  touch-action: manipulation;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3,
.wordmark {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-weight: 900;
}
h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
p {
  line-height: 1.6;
}
button {
  color: var(--ink);
}
.site-header {
  min-height: 88px;
  padding: 16px 4.3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--line);
  gap: 30px;
  background: var(--paper);
}
.wordmark {
  font-size: 2rem;
  letter-spacing: -0.05em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  vertical-align: top;
  letter-spacing: 0;
  margin-left: 3px;
}
.site-header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-header nav > a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
}
.site-header nav > a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--yellow);
  border: var(--line);
  border-radius: 5px;
  padding: 19px 22px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.button:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}
.button.small {
  padding: 13px 18px;
}
.menu-toggle {
  display: none;
}
.hero {
  max-width: 1500px;
  margin: auto;
  padding: 64px 4.3% 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}
.eyebrow {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 25px;
}
.tiny-star {
  font-size: 1.4rem;
  vertical-align: middle;
  margin-right: 6px;
}
.hero h1 {
  font-size: clamp(4rem, 7.7vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero h1 > span:not(.period) {
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 3px 3px 0 var(--ink);
}
.period {
  color: #df5937;
}
.hero-description {
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.text-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-underline-offset: 5px;
}
.fineprint {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  margin: 18px 0 0;
}
.hero-art {
  position: relative;
  padding: 8px 8px 35px;
}
.image-frame {
  transform: rotate(3deg);
  border: 3px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 8px 9px 0 var(--yellow);
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.sticker {
  position: absolute;
  border: var(--line);
  box-shadow: 3px 4px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
}
.confidence {
  bottom: 45px;
  left: -22px;
  background: var(--yellow);
  padding: 16px 22px;
  transform: rotate(-8deg);
  text-align: center;
}
.confidence strong {
  font-size: 1.8rem;
  line-height: 1;
}
.art-caption {
  display: block;
  text-align: right;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  margin: 25px 10px 0;
}
.ticker {
  background: var(--yellow);
  border-block: var(--line);
  display: flex;
  justify-content: space-around;
  gap: 28px;
  padding: 18px 22px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.ticker b {
  font-size: 1.2rem;
}
.section {
  padding: 80px 4.3%;
  scroll-margin-top: 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  margin: 0;
  font-size: 1rem;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}
.experience-card {
  border: var(--line);
  border-radius: 8px;
  padding: 23px 23px 0;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.experience-card:hover {
  transform: translateY(-5px);
}
.yellow {
  background: var(--yellow);
}
.blue {
  background: var(--blue);
}
.pink {
  background: var(--pink);
}
.card-top {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
}
.card-graphic {
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.quiz-graphic {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 6rem;
  letter-spacing: -0.05em;
  transform: rotate(-7deg);
}
.quiz-graphic > span {
  font-size: 4.6rem;
  -webkit-text-stroke: 1px var(--ink);
  color: var(--paper);
}
.card-graphic small {
  position: absolute;
  bottom: 18px;
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  letter-spacing: 0;
}
.quote-graphic {
  flex-direction: column;
  transform: rotate(-5deg);
}
.quote-graphic > span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
  text-align: center;
}
.quote-graphic i {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  margin-top: 10px;
}
.decision-graphic {
  gap: 15px;
  font-weight: 900;
  font-size: 2rem;
}
.decision-graphic > span {
  padding: 9px;
  background: var(--paper);
  border: var(--line);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-8deg);
}
.decision-graphic > span:last-of-type {
  transform: rotate(8deg);
}
.experience-card h3 {
  font-size: 1.65rem;
  margin-bottom: 13px;
}
.experience-card p {
  font-size: 0.94rem;
  flex: 1;
}
.card-action {
  border: 0;
  border-top: var(--line);
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 900;
  font-size: 0.75rem;
  margin-top: 10px;
  padding: 21px 0;
  gap: 10px;
  width: 100%;
  min-height: 65px;
}
.card-action span {
  font-size: 1.5rem;
}
.mascot-section {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 8%;
  align-items: center;
  border-block: var(--line);
  background: #f0efdf;
}
.mascot-portrait {
  height: 340px;
  border: var(--line);
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-6deg);
  box-shadow: 8px 7px 0 var(--yellow);
}
.mascot-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
  transform-origin: 50% 58%;
}
.mascot-section h2 {
  font-size: clamp(2.2rem, 3.9vw, 4rem);
}
.mascot-section p:not(.eyebrow) {
  max-width: 560px;
}
.stamp {
  display: inline-block;
  border: 3px solid var(--ink);
  padding: 10px;
  font-family: "Courier New", monospace;
  font-weight: 900;
  transform: rotate(-3deg);
  margin-top: 10px;
}
.lab {
  background: var(--ink);
  color: var(--paper);
}
.lab-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.useless-panel {
  padding: 30px;
  border: 2px solid #77776a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #2b2b26;
}
.label {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 0.73rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 700;
}
.useless-panel .label {
  color: var(--yellow);
  margin-bottom: 25px;
}
.useless-panel h3 {
  font-size: 1.65rem;
}
.counter {
  font-size: 0.78rem;
  margin-top: 28px;
}
.counter strong {
  font-size: 2rem;
  color: var(--yellow);
  margin-right: 8px;
}
.storage-note {
  font-size: 0.75rem;
  color: #cdcdc0;
}
.useless-panel > button {
  flex-shrink: 0;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #f35b43;
  border: 5px solid var(--ink);
  box-shadow:
    0 9px 0 #982f21,
    0 0 0 2px #f7816a;
  font-size: 1rem;
  font-weight: 900;
  transform: rotate(-8deg);
  transition:
    transform 0.08s,
    box-shadow 0.08s;
}
.useless-panel > button:active {
  transform: rotate(-8deg) translateY(7px);
  box-shadow:
    0 2px 0 #982f21,
    0 0 0 2px #f7816a;
}
.lab-notes {
  padding: 30px;
  border: 2px dashed #77776a;
  border-radius: 8px;
}
.lab-notes .label {
  color: #cdcdc0;
  margin-bottom: 25px;
}
.lab-notes p {
  color: #d6d6c9;
}
.handwritten {
  font-family: "Courier New", monospace;
  font-style: italic;
  color: var(--yellow);
}
.merch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  border-bottom: var(--line);
}
.outlined {
  border: 1px solid;
  padding: 10px;
  margin-top: 14px;
}
.merch-poster {
  background: var(--blue);
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 30px;
  text-align: center;
  transform: rotate(3deg);
}
.merch-poster > span,
.merch-poster small {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
}
.merch-poster strong {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin: 25px 0;
  letter-spacing: -0.03em;
}
.merch-poster strong span {
  display: block;
  color: var(--paper);
  -webkit-text-stroke: 1px var(--ink);
}
.token {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.token h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}
.token-description {
  max-width: 430px;
  font-size: 0.94rem;
}
.token-details {
  padding: 28px;
  border: var(--line);
  border-radius: 6px;
  background: #f0efdf;
}
.token-details > .label {
  background: var(--yellow);
  padding: 7px;
}
dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #c2c1b2;
  font-size: 0.8rem;
}
dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}
.token-details > p {
  font-size: 0.75rem;
  margin: 20px 0 0;
}
footer {
  padding: 32px 4.3%;
  border-top: var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
footer p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
}
footer > a:not(.wordmark) {
  font-size: 0.85rem;
}
footer small {
  flex-basis: 100%;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: #626258;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--yellow);
  padding: 15px;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
dialog {
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 0;
  width: min(680px, calc(100% - 28px));
  max-height: 90dvh;
  box-shadow: 9px 9px 0 var(--yellow);
}
dialog::backdrop {
  background: #20201cc9;
  backdrop-filter: blur(5px);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.dialog-top {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--yellow);
  border-bottom: var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 22px;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}
.dialog-top button {
  background: none;
  border: 0;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.4rem;
}
#experience-content {
  padding: 32px;
}
.experience-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.progress {
  height: 9px;
  background: #dedccd;
  border: 1px solid;
  margin: 18px 0 28px;
  border-radius: 10px;
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  background: var(--yellow);
}
.question {
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
}
.answers {
  display: grid;
  gap: 10px;
}
.answer {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 14px;
  border: var(--line);
  background: white;
  border-radius: 5px;
  padding: 15px;
  min-height: 55px;
}
.answer:hover {
  background: var(--yellow);
}
.answer b {
  font-family: "Courier New", monospace;
}
.answer[aria-pressed="true"] {
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}
.dialog-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.secondary-button {
  background: var(--paper);
  border: var(--line);
  border-radius: 5px;
  padding: 12px 18px;
  font-weight: 700;
  min-height: 46px;
}
.result-card {
  background: var(--yellow);
  border: var(--line);
  padding: 30px;
  text-align: center;
  border-radius: 5px;
}
.result-card .score {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 5.5rem;
  line-height: 1.2;
}
.result-card h3 {
  font-size: 2rem;
}
.result-card p {
  font-size: 1.1rem;
}
.result-card .domain {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  display: block;
  margin-top: 24px;
}
.result-card.blue {
  background: var(--blue);
}
.result-card blockquote {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 15px 0;
}
.dialog-note {
  font-size: 0.8rem;
  color: #595950;
  margin: 18px 0;
}
.field-label {
  display: block;
  font-weight: 700;
  margin: 20px 0 10px;
}
textarea {
  width: 100%;
  min-height: 105px;
  border: var(--line);
  border-radius: 5px;
  padding: 15px;
  resize: vertical;
  background: white;
}
.meters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.meter {
  border: 1px solid;
  padding: 10px;
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
}
.meter b {
  display: block;
  font-size: 1.7rem;
  margin-top: 10px;
}
.analyzing {
  padding: 35px 0;
  text-align: center;
  font-family: "Courier New", monospace;
}
.spinner {
  font-size: 4rem;
  display: block;
  animation: spin 2s linear infinite;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--yellow);
  border-radius: 5px;
  padding: 14px 22px;
  z-index: 5;
  max-width: 90%;
  font-size: 0.9rem;
}
.noscript {
  background: var(--yellow);
  padding: 20px;
}
.copy-fallback {
  width: 100%;
  font-size: 0.9rem;
}
.copy-fallback[hidden] {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1500px) {
  .section {
    padding-inline: max(4.3%, calc((100vw - 1370px) / 2));
  }
}
@media (max-width: 1050px) {
  .site-header nav {
    gap: 15px;
  }
  .hero {
    gap: 20px;
  }
  .hero h1 {
    font-size: 7.4vw;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    font-size: 0.75rem;
    padding: 17px;
  }
  .experience-grid {
    gap: 17px;
  }
  .experience-card {
    padding: 18px 18px 0;
  }
  .experience-card h3 {
    font-size: 1.35rem;
  }
  .card-top {
    font-size: 0.65rem;
  }
  .lab-grid {
    grid-template-columns: 1fr;
  }
  .mascot-portrait {
    height: 290px;
  }
  .merch,
  .token {
    gap: 35px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }
  .site-header {
    min-height: 74px;
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 5%;
  }
  .wordmark {
    font-size: 1.8rem;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    border: var(--line);
    background: var(--paper);
    padding: 10px 13px;
    border-radius: 4px;
    font-weight: 700;
  }
  .site-header nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 25px 0 8px;
    gap: 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav > a {
    padding: 16px 4px;
    border-bottom: 1px solid #d3d2c7;
  }
  .site-header nav .button {
    margin-top: 18px;
  }
  .hero {
    padding: 35px 5% 40px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 6rem);
    line-height: 0.96;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-actions .button {
    font-size: 0.75rem;
  }
  .hero-art {
    max-width: 510px;
    margin: auto;
    width: 100%;
    padding: 6px 14px 20px;
  }
  .confidence {
    left: 0;
    bottom: 45px;
    font-size: 0.75rem;
    padding: 11px 17px;
  }
  .confidence strong {
    font-size: 1.5rem;
  }
  .ticker {
    justify-content: flex-start;
    font-size: 0.72rem;
    padding-block: 14px;
    gap: 24px;
  }
  .section {
    padding: 50px 5%;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .section-heading h2 {
    font-size: 2.8rem;
  }
  .eyebrow {
    font-size: 0.73rem;
    margin-bottom: 19px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .experience-card {
    padding: 23px 23px 0;
  }
  .card-top {
    font-size: 0.73rem;
  }
  .experience-card h3 {
    font-size: 1.9rem;
  }
  .card-graphic {
    height: 180px;
  }
  .card-action {
    font-size: 0.8rem;
  }
  .mascot-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .mascot-portrait {
    max-width: 330px;
    width: 90%;
    height: 300px;
    margin: auto;
  }
  .mascot-section h2 {
    font-size: 2.6rem;
  }
  .useless-panel {
    padding: 23px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .useless-panel > button {
    align-self: center;
    margin: 0 0 20px;
  }
  .counter {
    margin-bottom: 0;
  }
  .lab-notes {
    padding: 23px;
  }
  .merch,
  .token {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .merch-poster {
    margin: 5px 8px 10px;
  }
  .merch-poster strong {
    font-size: 3.6rem;
  }
  .token h2 {
    font-size: 2.5rem;
  }
  .token-details {
    padding: 20px;
  }
  footer {
    padding: 28px 5%;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  footer small {
    line-height: 1.6;
  }
  .dialog-top {
    padding: 8px 14px;
    font-size: 0.65rem;
  }
  #experience-content {
    padding: 23px;
  }
  .experience-title {
    font-size: 2rem;
  }
  .result-card {
    padding: 22px 15px;
  }
  .result-card .score {
    font-size: 4.5rem;
  }
  .result-card h3 {
    font-size: 1.7rem;
  }
  .meters {
    gap: 5px;
  }
  .meter {
    padding: 8px 4px;
    font-size: 0.6rem;
  }
  .meter b {
    font-size: 1.4rem;
  }
  .dialog-actions .button {
    font-size: 0.75rem;
    padding: 15px;
  }
  .desktop-break {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.progress progress {
  display: block;
  appearance: none;
  width: 100%;
  height: 100%;
  border: 0;
}
.progress progress::-webkit-progress-bar {
  background: #dedccd;
}
.progress progress::-webkit-progress-value {
  background: var(--yellow);
}
.progress progress::-moz-progress-bar {
  background: var(--yellow);
}
@media (max-width: 760px) {
  .experience-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .experience-card {
    min-width: 0;
  }
  .card-graphic {
    min-width: 0;
  }
  .decision-graphic {
    gap: 10px;
    font-size: 1.8rem;
  }
  .card-graphic small {
    max-width: 100%;
    text-align: center;
  }
}
.arcade-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border: var(--line);
  border-radius: 9px;
  margin-bottom: 32px;
  overflow: hidden;
}
.arcade-feature-copy {
  padding: 35px;
}
.arcade-feature .eyebrow {
  color: var(--yellow);
  margin-bottom: 18px;
}
.arcade-feature h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 18px;
}
.arcade-feature-copy > p:not(.eyebrow) {
  max-width: 480px;
}
.arcade-caption {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  margin: 20px 0 0;
  color: #d6d6c9;
}
.arcade-feature-art {
  position: relative;
  min-height: 320px;
  align-self: stretch;
  background: var(--blue);
  color: var(--ink);
  border-left: var(--line);
  overflow: hidden;
}
.arcade-mascot {
  position: absolute;
  bottom: 45px;
  left: calc(50% - 62px);
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--yellow);
}
.arcade-mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.7);
  transform-origin: 51% 45%;
}
.arcade-floating {
  position: absolute;
  font-size: 2.7rem;
  top: 42px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}
.arcade-floating small {
  font:
    bold 0.8rem "Courier New",
    monospace;
  background: var(--yellow);
  padding: 4px 7px;
  border: 1px solid;
  white-space: nowrap;
}
.arcade-floating.banana {
  left: 12%;
  transform: rotate(-15deg);
}
.arcade-floating.book {
  left: 44%;
  top: 25px;
  transform: rotate(12deg);
}
.arcade-floating.book small {
  background: var(--pink);
}
.arcade-floating.chicken {
  right: 10%;
  top: 70px;
  transform: rotate(10deg);
}
.arcade-art-label {
  position: absolute;
  bottom: 13px;
  left: 0;
  width: 100%;
  text-align: center;
  font:
    bold 0.7rem "Courier New",
    monospace;
}
.arcade-dialog {
  width: min(760px, calc(100% - 28px));
}
.arcade-dialog #experience-content {
  padding: 20px 25px;
}
.arcade-dialog .experience-title {
  font-size: 2rem;
  margin-bottom: 15px;
}
.arcade-hud {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font:
    bold 0.7rem "Courier New",
    monospace;
}
.arcade-hud b {
  font-size: 1.5rem;
  display: block;
  margin-top: 4px;
}
.game-stage {
  position: relative;
  border: var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--blue);
}
.game-stage canvas {
  display: block;
  width: 100%;
  height: auto;
  touch-action: none;
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: #fffdf3f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
}
.game-overlay[hidden] {
  display: none;
}
.game-overlay h3 {
  font-size: 2.8rem;
  margin: 10px 0;
}
.game-overlay p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.game-overlay .game-how {
  font-size: 0.75rem;
}
.game-overlay .button {
  padding: 13px 17px;
  font-size: 0.75rem;
}
.game-controls {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}
.game-controls button {
  flex: 1;
}
.game-controls #game-pause {
  flex: 0.7;
}
#game-feedback {
  font-size: 0.85rem;
  margin: 12px 0 0;
  min-height: 22px;
}
.arcade-dialog .dialog-note {
  margin: 10px 0 0;
}
@media (max-width: 760px) {
  .arcade-feature {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .arcade-feature-copy {
    padding: 25px;
  }
  .arcade-feature-art {
    min-height: 270px;
    border-left: 0;
    border-top: var(--line);
  }
  .arcade-feature h3 {
    font-size: 2.8rem;
  }
  .arcade-dialog #experience-content {
    padding: 16px;
  }
  .arcade-dialog .experience-title {
    font-size: 1.8rem;
  }
  .game-stage canvas {
    height: 355px;
    object-fit: fill;
  }
  .game-overlay h3 {
    font-size: 2.1rem;
  }
  .game-overlay .label {
    font-size: 0.65rem;
  }
  .game-controls {
    gap: 6px;
  }
  .game-controls button {
    padding: 12px 7px;
    font-size: 0.75rem;
  }
  .game-overlay .game-how {
    font-size: 0.7rem;
  }
  .arcade-hud {
    font-size: 0.65rem;
  }
  .arcade-caption {
    font-size: 0.7rem;
  }
}
