/* ============================================================
   LARPSLAYER - styles.css
   Yes, this site looks like 2004 and scores like 2026.
   That's the whole point.
   ============================================================ */

:root {
  --royal-blue: #003399;        /* Classic hyperlink / Windows XP blue */
  --visited-purple: #663399;    /* Visited link purple. Non-negotiable. */
  --parchment: #FFFDE7;         /* Aged scroll background */
  --steel-gray: #C0C0C0;        /* Windows 95/98 chrome silver */
  --knight-silver: #E8E8E8;     /* Beveled panel fill */
  --blood-crimson: #990000;     /* For slain LARPs & warnings */
  --gold-trim: #DAA520;         /* Achievement gold, borders, crowns */
  --terminal-green: #00FF00;    /* Hacker accents, hit counter digits */
  --true-black: #000000;

  --body-font: Verdana, Tahoma, Geneva, sans-serif;
  --pixel-font: "Press Start 2P", "Courier New", monospace;
  --medieval-font: "MedievalSharp", "Times New Roman", serif;
  --code-font: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0 0 34px;          /* room for the status bar */
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.6;
  color: var(--true-black);
  background: var(--steel-gray);
  /* The classic tiled-texture move, minus the 40KB tile. */
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.35) 0 2px, transparent 2px 4px);
  cursor: url("assets/cursor.svg") 2 2, auto;
}

/* ---------- LINKS: blue, purple, underlined. This is law. ---------- */
a { color: var(--royal-blue); text-decoration: underline; }
a:visited { color: var(--visited-purple); }
a:hover { color: var(--blood-crimson); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px dashed var(--blood-crimson);
  outline-offset: 2px;
}

code, .mono { font-family: var(--code-font); font-size: 1em; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold-trim); color: #000; padding: 8px 14px; font-weight: bold;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- TYPOGRAPHY ---------- */
.h-pixel, .wordmark {
  font-family: var(--pixel-font);
  line-height: 1.45;
  letter-spacing: .02em;
}
.h-pixel--sm { font-size: 10px; }
.h-medieval {
  font-family: var(--medieval-font);
  font-size: 26px;
  color: var(--royal-blue);
  margin: 0 0 10px;
  text-shadow: 1px 1px 0 #fff;
}

/* ============================================================
   R.I.P. <marquee>, you beautiful beast.
   Rebuilt in CSS so it looks identical and behaves better.
   ============================================================ */
.marquee {
  background: var(--true-black);
  color: var(--terminal-green);
  border-bottom: 2px solid var(--gold-trim);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--code-font);
  font-weight: bold;
  font-size: 13px;
  padding: 5px 0;
}
.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 38s linear infinite;
}
.marquee__content { padding-right: 3em; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- BEVELS: the Windows 95 sacrament ---------- */
.panel {
  border: 2px outset var(--steel-gray);
  background: var(--knight-silver);
  margin: 0 0 16px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.35);
}
.panel--parchment .panel__body { background: var(--parchment); }
.panel__body {
  border: 1px inset var(--steel-gray);
  margin: 3px;
  padding: 14px;              /* cellpadding energy */
  background: var(--knight-silver);
}

.titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: linear-gradient(180deg, #1c5ed6 0%, var(--royal-blue) 45%, #002270 100%);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 5px;
  border-bottom: 1px solid #001a55;
}
.titlebar__text {
  text-shadow: 1px 1px 0 rgba(0,0,0,.6);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  /* h2 and span must be indistinguishable here: the chrome is the heading. */
  margin: 0; font-size: 12px; font-weight: bold; font-family: var(--body-font); color: #fff;
}
.titlebar__buttons { display: flex; gap: 3px; flex: none; }
.tb-btn {
  font-family: var(--body-font);
  font-size: 11px; font-weight: bold; line-height: 1;
  width: 20px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--steel-gray);
  border: 2px outset var(--steel-gray);
  color: #000; padding: 0; cursor: pointer;
}
.tb-btn--close:hover { background: var(--blood-crimson); color: #fff; }
.tb-btn:active { border-style: inset; }

/* ---------- BUTTONS: they physically press ---------- */
.btn {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: 10px;
  font-weight: bold;
  color: #000;
  background: var(--steel-gray);
  border: 2px outset var(--steel-gray);
  padding: 8px 12px;
  text-decoration: none;
  cursor: url("assets/cursor.svg") 2 2, pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn:visited { color: #000; }
.btn:hover { background: #d4d4d4; color: #000; }
.btn:active { border-style: inset; padding: 9px 11px 7px 13px; }
.btn--big {
  font-family: var(--pixel-font);
  font-size: 11px;
  padding: 14px 16px;
  border-width: 3px;
  background: var(--gold-trim);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn--big:hover { background: #f0c246; }
.btn--big:active { padding: 15px 15px 13px 17px; }

/* ---------- HEADER ---------- */
.site-header {
  border: 2px outset var(--steel-gray);
  background: var(--knight-silver);
  margin: 10px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.35);
}
.header-body {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background:
    linear-gradient(180deg, var(--parchment), #f3edcb);
  border: 1px inset var(--steel-gray);
  margin: 3px;
}
.logo-btn { background: none; border: 0; padding: 0; cursor: pointer; flex: none; }
.logo {
  image-rendering: pixelated;
  background: var(--royal-blue);
  border: 3px outset var(--gold-trim);
  padding: 4px;
  display: block;
}
.wordmark {
  font-size: 32px;
  margin: 0 0 8px;
  color: var(--royal-blue);
  text-shadow: 2px 2px 0 var(--gold-trim), 4px 4px 0 rgba(0,0,0,.25);
}
.tagline { font-style: italic; margin: 0 0 4px; font-size: 12px; }
.motto { margin: 0; font-size: 12px; font-weight: bold; color: var(--blood-crimson); }

.nav {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 8px; margin: 3px; border: 1px inset var(--steel-gray);
  background: var(--steel-gray);
}
.nav__btn { flex: 1 1 auto; text-align: center; }

/* ---------- SECTIONS ---------- */
.section { margin: 10px; scroll-margin-top: 12px; }

.lead { font-size: 14px; margin: 0 0 10px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.fineprint { font-size: 11px; color: #444; margin: 8px 0 0; }
.satire-tag { font-size: 11px; color: var(--blood-crimson); font-style: italic; }

/* ---------- STAT BLOCK (character sheet) ---------- */
.stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.stat {
  border: 2px inset var(--steel-gray);
  background: var(--true-black);
  color: var(--terminal-green);
  padding: 10px;
  text-align: center;
}
.stat__label { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-trim); }
.stat__value {
  display: block;
  font-family: var(--pixel-font);
  font-size: 18px;
  margin: 10px 0 6px;
  text-shadow: 0 0 6px rgba(0,255,0,.55);
}
.stat__sub { display: block; font-size: 10px; color: #7ac77a; }

/* ---------- LORE / QUEST LOG ---------- */
.scroll p { margin: 0 0 12px; }
.questlog { list-style: none; margin: 20px 0; padding: 0 0 0 4px; border-left: 4px double var(--gold-trim); }
.quest { padding: 0 0 14px 16px; position: relative; }
.quest::before {
  content: "◆"; position: absolute; left: -12px; top: 0;
  color: var(--gold-trim); font-size: 14px; background: var(--parchment);
}
.quest__stamp {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: 9px;
  padding: 5px 7px;
  border: 2px outset var(--steel-gray);
  background: var(--steel-gray);
  margin-bottom: 6px;
}
.quest--done .quest__stamp { background: var(--knight-silver); color: #333; }
.quest--current .quest__stamp { background: var(--blood-crimson); color: #fff; border-color: var(--blood-crimson); }
.quest p { margin: 0; }

.video-box {
  border: 2px inset var(--steel-gray);
  background: var(--knight-silver);
  padding: 14px; margin: 18px 0; text-align: center;
}
.video-box h3 { margin: 0 0 12px; font-size: 12px; color: var(--royal-blue); }

.code-of-honour { padding-left: 22px; }
.code-of-honour li { margin-bottom: 8px; }

/* ---------- EXPLORER TOOLBAR ---------- */
.explorer-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  background: var(--steel-gray);
  border-bottom: 1px solid #808080;
  padding: 6px 8px;
  font-size: 11px;
}
.explorer-bar__label { font-weight: bold; }
.explorer-select {
  font-family: var(--body-font); font-size: 11px;
  border: 2px inset var(--steel-gray);
  background: #fff; padding: 3px;
}
.explorer-bar__count { margin-left: auto; font-family: var(--code-font); }

/* ---------- SLAYING CARDS ---------- */
.cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  position: relative;
  border: 2px outset var(--steel-gray);
  background: var(--knight-silver);
  overflow: hidden;
}
.card__body { border: 1px inset var(--steel-gray); margin: 3px; padding: 12px; background: var(--parchment); }
.card__name { font-family: var(--pixel-font); font-size: 12px; margin: 0 0 8px; color: var(--royal-blue); }
.card__claim {
  font-style: italic; border-left: 3px solid var(--gold-trim);
  padding-left: 8px; margin: 0 0 10px; color: #333;
}
/* Give the rubber stamp somewhere to land that isn't on top of the quote. */
.card:not(.card--wip) .card__name { padding-right: 74px; }
.card:not(.card--wip) .card__claim { padding-top: 34px; }
.card__rows { list-style: none; margin: 0 0 12px; padding: 0; font-size: 11px; font-family: var(--code-font); }
.card__rows li { display: flex; justify-content: space-between; gap: 8px; border-bottom: 1px dotted #999; padding: 3px 0; }
.card__rows b { font-family: var(--body-font); }
.card__actions { display: flex; flex-direction: column; gap: 8px; }
.card__actions .btn { width: 100%; box-sizing: border-box; }

/* ---------- VOTING CONTROLS ---------- */
.vote-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  border-top: 1px dashed var(--steel-gray);
  border-bottom: 1px dashed var(--steel-gray);
  padding: 6px 0;
}
.vote-btn {
  font-family: var(--pixel-font);
  font-size: 8px;
  padding: 4px 8px;
}
.vote-score {
  font-family: var(--code-font);
  font-weight: bold;
  font-size: 14px;
}

/* Deep-linked card highlight: pulsing gold glow */
.card--highlighted {
  animation: card-glow 1.5s ease-in-out 3;
  box-shadow: 0 0 20px var(--gold-trim), 0 0 40px rgba(218,165,32,.3);
}
@keyframes card-glow {
  0%, 100% { box-shadow: 0 0 8px var(--gold-trim); }
  50% { box-shadow: 0 0 28px var(--gold-trim), 0 0 56px rgba(218,165,32,.4); }
}

/* The rubber stamp. Rotated, crimson, unbothered. */
.stamp {
  position: absolute; top: 26px; right: -30px;
  transform: rotate(18deg);
  font-family: var(--pixel-font); font-size: 13px;
  color: var(--blood-crimson);
  border: 4px double var(--blood-crimson);
  padding: 6px 34px;
  opacity: .75;
  pointer-events: none;
  background: rgba(255,255,255,.35);
}

/* UNDER CONSTRUCTION: the striped banner, reborn in gradients */
.card--wip .card__body { background: #fffbe6; }
.construction {
  background: repeating-linear-gradient(45deg,
    var(--gold-trim) 0 14px, var(--true-black) 14px 28px);
  border: 2px inset var(--steel-gray);
  padding: 6px;
  text-align: center;
  margin: 0 0 10px;
}
.construction__inner {
  background: var(--knight-silver);
  font-family: var(--pixel-font);
  font-size: 9px;
  padding: 7px 4px;
}
.worker { display: inline-block; animation: dig .7s steps(2, end) infinite; }
@keyframes dig { 50% { transform: translateY(-3px) rotate(-14deg); } }

/* ---------- BOUNTY FORM ---------- */
.bounty-form fieldset {
  border: 2px groove var(--steel-gray);
  background: rgba(255,255,255,.4);
  padding: 12px 14px;
  margin: 0 0 12px;
}
.bounty-form legend { font-family: var(--pixel-font); font-size: 10px; padding: 0 6px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-weight: bold; margin-bottom: 4px; font-size: 12px; }
.req { color: var(--blood-crimson); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body-font); font-size: 12px;
  border: 2px inset var(--steel-gray);
  background: #fff; padding: 5px;
}
.field textarea { resize: vertical; }
.field input:invalid:not(:placeholder-shown) { background: #fff0f0; }
.form-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.form-note { font-size: 11px; font-weight: bold; color: var(--blood-crimson); }

/* ---------- GUESTBOOK ---------- */
.guestbook { list-style: none; margin: 12px 0 0; padding: 0; }
.gb-entry { border: 2px inset var(--steel-gray); background: var(--parchment); padding: 10px; margin-bottom: 10px; }
.gb-entry__msg { margin: 0 0 6px; }
.gb-entry__meta { margin: 0; font-size: 11px; color: #555; }
.gb-name { font-weight: bold; color: var(--visited-purple); }

/* ---------- FOOTER ---------- */
.site-footer { margin: 10px; }
.footer-body { display: grid; gap: 18px; text-align: center; }

.counter-label { margin: 0 0 6px; font-size: 11px; font-weight: bold; }
.counter {
  display: inline-flex; gap: 2px; margin: 0; padding: 4px;
  background: var(--true-black); border: 2px inset var(--steel-gray);
}
.digit {
  font-family: var(--code-font); font-weight: bold; font-size: 22px;
  color: var(--terminal-green);
  background: #061006;
  padding: 2px 5px;
  border: 1px solid #0a3a0a;
  text-shadow: 0 0 5px rgba(0,255,0,.7);
  min-width: 18px; text-align: center;
}
.webring__links { display: flex; gap: 8px; justify-content: center; margin: 8px 0; }

.badge-row {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
/* 88x31. The sacred dimensions. */
.badge {
  width: 88px; height: 31px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 7px; font-weight: bold; letter-spacing: .04em;
  font-family: var(--body-font); line-height: 1.3;
  border: 1px outset #fff;
  text-transform: uppercase;
}
.badge--green  { background: var(--true-black); color: var(--terminal-green); }
.badge--blue   { background: var(--royal-blue); color: #fff; }
.badge--red    { background: var(--blood-crimson); color: var(--gold-trim); }
.badge--gold   { background: var(--gold-trim); color: var(--true-black); }
.badge--black  { background: var(--true-black); color: var(--blood-crimson); }
.badge--silver { background: var(--steel-gray); color: var(--true-black); }
.badge--wide {
  width: auto; max-width: 480px; height: auto; margin: 0 auto;
  padding: 6px 10px; font-size: 8px; text-transform: none;
  background: var(--knight-silver); color: #000; border: 1px outset #fff;
}
.copyright { font-size: 11px; margin: 8px 0 4px; }
.bard { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ---------- STATUS BAR ---------- */
.statusbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; gap: 3px;
  background: var(--steel-gray);
  border-top: 2px outset var(--steel-gray);
  padding: 3px;
  font-size: 11px;
}
.statusbar__cell {
  border: 1px inset var(--steel-gray);
  padding: 2px 6px;
  flex: 1;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.statusbar__cell--right { flex: none; }

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal[hidden] { display: none; }
.modal__win {
  width: min(420px, 100%);
  border: 2px outset var(--steel-gray);
  background: var(--knight-silver);
  box-shadow: 5px 5px 0 rgba(0,0,0,.5);
}
.modal__body { text-align: center; }

/* ---------- SLAY MODE / EASTER EGGS ---------- */
.slash {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  display: none;
  background: linear-gradient(115deg, transparent 44%, #fff 48%, var(--gold-trim) 50%, #fff 52%, transparent 56%);
}
.slash--go { display: block; animation: slash-sweep .5s ease-out; }
@keyframes slash-sweep {
  from { transform: translateX(-100%); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}
.slay-mode { animation: shake .45s linear 2; }
@keyframes shake {
  25% { transform: translate(4px, -3px) rotate(.4deg); }
  50% { transform: translate(-5px, 2px) rotate(-.4deg); }
  75% { transform: translate(3px, 3px); }
}
.slay-banner {
  position: fixed; inset: 0; z-index: 190;
  display: flex; align-items: center; justify-content: center;
  background: rgba(153,0,0,.55);
  font-family: var(--pixel-font); font-size: 30px; color: var(--gold-trim);
  text-shadow: 3px 3px 0 var(--true-black);
  pointer-events: none; text-align: center; padding: 20px;
}

/* MAXIMUM LARP MODE: a loving parody of every 2026 AI landing page.
   Note how much worse this is. That's the joke. */
body.maximum-larp,
body.maximum-larp .panel__body,
body.maximum-larp .card__body {
  font-family: "Comic Sans MS", "Comic Sans", cursive !important;
  background: linear-gradient(135deg, #7f5af0, #2cb67d, #ff8906, #e53170) !important;
  background-size: 400% 400% !important;
  animation: larp-gradient 6s ease infinite !important;
  color: #fff !important;
}
/* Comic Sans must reach EVERY heading. Half a LARP is not a LARP. */
body.maximum-larp .h-medieval,
body.maximum-larp .h-pixel,
body.maximum-larp .wordmark,
body.maximum-larp .card__name,
body.maximum-larp .btn,
body.maximum-larp .stat__value,
body.maximum-larp code {
  font-family: "Comic Sans MS", "Comic Sans", cursive !important;
  text-shadow: none !important;
}
body.maximum-larp .h-medieval, body.maximum-larp .wordmark { color: #fff !important; }
body.maximum-larp .header-body,
body.maximum-larp .nav,
body.maximum-larp .stat {
  background: rgba(255,255,255,.12) !important;
  border: 0 !important; border-radius: 18px !important;
}
body.maximum-larp .titlebar { background: rgba(255,255,255,.15) !important; border-radius: 14px; }
body.maximum-larp .panel,
body.maximum-larp .card {
  border: 0 !important; border-radius: 22px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.35) !important;
  backdrop-filter: blur(6px);
}
body.maximum-larp .btn {
  border: 0 !important; border-radius: 999px !important;
  background: #fff !important; color: #7f5af0 !important;
  text-transform: uppercase; letter-spacing: .1em;
}
body.maximum-larp a { color: #fff !important; text-decoration: none !important; }
@keyframes larp-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.larp-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 195;
  padding: 14px; text-align: center;
  font-family: "Comic Sans MS", cursive; font-size: 18px; font-weight: bold;
  color: #fff; background: linear-gradient(90deg, #7f5af0, #e53170);
  box-shadow: 0 10px 40px rgba(127,90,240,.6);
}

/* Sparkle trail: tiny, cheap, desktop-only, killed by reduced-motion */
.spark {
  position: fixed; z-index: 90; pointer-events: none;
  width: 6px; height: 6px; background: var(--gold-trim);
  animation: spark-fade .55s linear forwards;
}
@keyframes spark-fade {
  to { opacity: 0; transform: translateY(14px) scale(.2); }
}

/* Panel State Styles: Minimized, Maximized, and Closed */
.panel--minimized .panel__body {
  display: none !important;
}
.panel--maximized {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  margin: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.panel--maximized .panel__body {
  height: calc(100vh - 36px) !important;
  overflow-y: auto !important;
  border-radius: 0 !important;
}
/* Video Embed Container */
.video-embed-wrapper {
  margin: 12px 0;
  border: 2px inset var(--steel-gray);
  background: var(--true-black);
}
.video-embed-wrapper iframe {
  display: block;
  border: 0;
  max-width: 100%;
}
.video-embed-wrapper iframe:not(.instagram-media) {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* ---------- GAZETTE CHRONICLES (SEO ARTICLES) ---------- */
.gazette-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 16px;
}
.gazette-card {
  border: 2px outset var(--steel-gray);
  background: var(--knight-silver);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gazette-card__title {
  font-family: var(--pixel-font), monospace;
  font-size: 11px;
  margin: 0 0 8px;
  line-height: 1.4;
}
.gazette-card__title a {
  color: var(--royal-blue);
  text-decoration: underline;
}
.gazette-card__title a:visited {
  color: var(--visited-purple);
}
.gazette-card__meta {
  font-size: 10px;
  color: #555;
  margin: 0 0 8px;
}
.gazette-card__desc {
  font-size: 12px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.read-scroll-btn {
  align-self: flex-start;
}
#article-viewer {
  margin-top: 20px;
  max-height: 600px;
}
#viewer-content h2 {
  margin-top: 0;
}
.table-container {
  overflow-x: auto;
  margin-top: 12px;
}
.retro-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  border: 2px inset var(--steel-gray);
  background: #fff;
}
.retro-table th, .retro-table td {
  border: 1px solid #808080;
  padding: 6px;
  text-align: left;
}
.retro-table th {
  background: var(--steel-gray);
  font-weight: bold;
}
.retro-table tr:nth-child(even) td {
  background: var(--knight-silver);
}

/* ---------- RESPONSIVE: a lovingly shrunk 2004 site ---------- */
@media (max-width: 700px) {
  .header-body { flex-direction: column; text-align: center; gap: 12px; }
  .wordmark { font-size: 20px; }
  .logo { width: 96px; height: 96px; }
  .nav { flex-direction: column; }
  .nav__btn { text-align: center; }
  .cta-row { flex-direction: column; }
  .btn--big { text-align: center; }
  .h-medieval { font-size: 21px; }
  .stamp { top: 18px; right: -26px; font-size: 11px; padding: 5px 28px; }
  body { cursor: auto; }     /* no pixel sword on touch. it's not that kind of party. */
  .btn { cursor: pointer; }
}

/* ---------- ACCESSIBILITY: the craft under the costume ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}
