/* ============================================================
   ajh's room - stylesheet
   verdana primary. courier mono accent. comic sans for ONE place.
   nothing is uniform. that's the point.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg: #0e0e10;
  --ink: #f4f4f0;
  --ink-dim: #b8b8a8;
  --pink: #ff2e9a;
  --cyan: #00e5ff;
  --lime: #9eff00;
  --yellow: #ffd64a;
  --coral: #ff6b5b;
  --rip: #b22222;
  --shadow: 4px 4px 0 #000;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: var(--cyan); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }
a:hover { background: var(--cyan); color: var(--bg); text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ---------- body w/ tiled bg ---------- */
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 0 0, rgba(255,46,154,0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(0,229,255,0.08) 0%, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><rect width='32' height='32' fill='%230e0e10'/><circle cx='4' cy='4' r='1' fill='%23222226'/><circle cx='20' cy='12' r='0.8' fill='%23ff2e9a' opacity='0.35'/><circle cx='28' cy='28' r='0.8' fill='%2300e5ff' opacity='0.35'/><circle cx='12' cy='24' r='0.6' fill='%239eff00' opacity='0.3'/></svg>");
  background-attachment: fixed;
  background-size: auto, auto, 32px 32px;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M2 2 L2 14 L6 11 L8 16 L11 15 L9 10 L14 10 Z' fill='white' stroke='black' stroke-width='1.2'/></svg>") 2 2, auto;
}

/* faint scanlines + crt noise overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.4) 100%);
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ============================================================
   HEADER BANNER
   ============================================================ */
.banner {
  position: relative;
  margin: 16px 16px 0;
  padding: 24px 24px 12px;
  border: 4px ridge var(--pink);
  background:
    linear-gradient(135deg, rgba(255,46,154,0.18), rgba(0,229,255,0.18)),
    #16161a;
  text-align: center;
  overflow: hidden;
}
.banner-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 30%, var(--yellow) 0 1.5px, transparent 2px),
    radial-gradient(circle at 80% 20%, var(--cyan) 0 1.5px, transparent 2px),
    radial-gradient(circle at 25% 80%, var(--lime) 0 1.5px, transparent 2px),
    radial-gradient(circle at 70% 70%, var(--pink) 0 1.5px, transparent 2px),
    radial-gradient(circle at 45% 50%, var(--yellow) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 60%, var(--lime) 0 1px, transparent 2px);
  opacity: 0.6;
}

.wordmark {
  font-family: Verdana, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 8vw, 88px);
  letter-spacing: -2px;
  margin: 0 0 4px;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--lime), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    2px 2px 0 rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.wordmark .apos { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.sparkle { display: inline-block; }
.sparkle-2 { transform: translateY(-20px); }

.epigraph {
  font-style: italic;
  color: var(--ink-dim);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.epigraph span { color: var(--lime); }

.currently {
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  margin: 4px 0 16px;
  position: relative;
  z-index: 1;
}
.currently #currently-line { color: var(--yellow); font-weight: bold; }
.caret { color: var(--yellow); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 2px dashed var(--cyan);
  border-bottom: 2px dashed var(--cyan);
  background: #000;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  color: var(--lime);
}
.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
}
.marquee-2 .marquee-track { animation-direction: reverse; animation-duration: 22s; color: var(--pink); }
.marquee .dot { color: var(--pink); margin: 0 12px; }
.marquee-2 .dot { color: var(--cyan); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   PAGE LAYOUT (rail + main)
   ============================================================ */
.page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  padding: 16px;
  align-items: start;
}
.rail { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 16px; }
.content { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

/* ============================================================
   GENERIC BOX
   ============================================================ */
.box {
  background: #16161a;
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow);
}
.box-title {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px;
  padding: 4px 8px;
  background: var(--pink);
  color: var(--bg);
  letter-spacing: 0.5px;
  border: 2px outset var(--pink);
}
.aside {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  color: var(--ink-dim);
  font-style: italic;
  margin: 6px 0;
}

/* per-box flair: each box gets its own border / accent treatment so the
   page reads "decorated over time" not "designed in one sitting" */
.box-about        { border: 4px outset var(--lime); }
.box-about .box-title { background: var(--lime); border-color: var(--lime); }

.box-top8         { border: 3px dotted var(--yellow); }
.box-top8 .box-title  { background: var(--yellow); border-color: var(--yellow); }

.box-player      { border: 4px ridge var(--cyan); }
.box-player .box-title { display: none; }

.box-shoutbox    { border: 3px dashed var(--coral); transform: rotate(-1deg); }
.box-shoutbox .box-title { background: var(--coral); border-color: var(--coral); }

.box-blinkies    { border: 2px solid var(--ink); }
.box-blinkies .box-title { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.box-blurbs      { border: 4px double var(--cyan); }
.box-blurbs .box-title { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }

.box-lab         { border: 4px ridge var(--pink); }
.box-studio      { border: 3px groove var(--yellow); transform: rotate(0.5deg); }
.box-studio .box-title { background: var(--yellow); border-color: var(--yellow); }

.box-dept        { border: 4px inset var(--lime); }
.box-dept .box-title { background: var(--lime); border-color: var(--lime); }

.box-obs         { border: 3px dotted var(--coral); }
.box-obs .box-title { background: var(--coral); border-color: var(--coral); }

/* ============================================================
   ABOUT BOX
   ============================================================ */
.avatar {
  width: 100%;
  aspect-ratio: 1;
  border: 3px ridge var(--yellow);
  background: var(--bg);
  margin-bottom: 8px;
  image-rendering: pixelated;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-family: "Courier New", Courier, monospace;
}
.about-list li { padding: 3px 0; border-bottom: 1px dotted #333; }
.about-list b { color: var(--lime); }
.mood-rotate { color: var(--yellow); font-weight: bold; }

/* ============================================================
   TOP 8
   ============================================================ */
.top8 {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  font-size: 13px;
}
.top8 li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid #2a2a30;
}
.top8 .num {
  font-family: "Courier New", Courier, monospace;
  color: var(--pink);
  font-weight: bold;
  min-width: 22px;
}
.top8 a { color: var(--ink); }
.top8 a:hover { background: var(--yellow); color: var(--bg); }
.top8 .empty { color: var(--ink-dim); font-style: italic; }
.tag {
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  margin-left: auto;
  padding: 1px 4px;
}
.tag-now { background: var(--lime); color: var(--bg); }
.tag-rip { background: var(--rip); color: var(--ink); }

/* ============================================================
   MUSIC PLAYER (winamp-ish)
   ============================================================ */
.player-chrome {
  border: 2px outset #888;
  background: linear-gradient(180deg, #2a2a30, #16161a);
  padding: 6px;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
}
.player-title {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #000;
  border: 1px inset #444;
  padding: 4px;
  overflow: hidden;
}
.player-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  color: var(--lime);
}
#player-now { display: inline-block; padding-left: 100%; animation: marquee 14s linear infinite; }
.player-screen {
  background: #000;
  color: var(--lime);
  border: 1px inset #444;
  padding: 4px 6px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.player-bars { display: inline-flex; gap: 2px; align-items: flex-end; height: 14px; }
.player-bars i {
  display: inline-block;
  width: 3px;
  background: var(--lime);
  height: 14px;
  animation: bars 0.8s ease-in-out infinite alternate;
}
.player-bars i:nth-child(1) { animation-delay: 0.0s; }
.player-bars i:nth-child(2) { animation-delay: 0.1s; }
.player-bars i:nth-child(3) { animation-delay: 0.2s; }
.player-bars i:nth-child(4) { animation-delay: 0.3s; }
.player-bars i:nth-child(5) { animation-delay: 0.15s; }
.player-bars i:nth-child(6) { animation-delay: 0.25s; }
.player-bars i:nth-child(7) { animation-delay: 0.05s; }
.player-bars i:nth-child(8) { animation-delay: 0.35s; }
@keyframes bars { from { transform: scaleY(0.2); } to { transform: scaleY(1); } }
.player-bars.idle i { animation-play-state: paused; transform: scaleY(0.2); }

.player-controls {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  align-items: center;
}
.player-controls button {
  background: linear-gradient(180deg, #444, #222);
  color: var(--ink);
  border: 2px outset #888;
  padding: 2px 8px;
  font-family: "Courier New", monospace;
}
.player-controls button:active { border-style: inset; }
#seek { flex: 1; accent-color: var(--lime); }

.playlist {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  border: 1px inset #444;
  background: #0a0a0c;
  max-height: 140px;
  overflow-y: auto;
}
.playlist li {
  padding: 4px 6px;
  border-bottom: 1px dotted #333;
  cursor: pointer;
  color: var(--ink-dim);
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
.playlist li:hover { background: var(--lime); color: var(--bg); }
.playlist li.active { background: var(--pink); color: var(--bg); font-weight: bold; }
.playlist .pl-num { color: var(--cyan); }
.playlist li.active .pl-num { color: var(--bg); }

/* ============================================================
   SHOUTBOX (decorative + has comic sans on purpose)
   ============================================================ */
.shouts {
  list-style: none;
  padding: 6px;
  margin: 0;
  background: #0a0a0c;
  border: 1px inset var(--coral);
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 12px;
  max-height: 160px;
  overflow-y: auto;
}
.shouts li { padding: 3px 0; border-bottom: 1px dotted #333; }
.shouts b { color: var(--coral); }
.shout-form { display: flex; gap: 4px; margin-top: 6px; }
.shout-form input {
  flex: 1;
  background: #0a0a0c;
  color: var(--ink-dim);
  border: 1px inset #444;
  padding: 4px;
  font-family: "Comic Sans MS", cursive;
  font-size: 11px;
}
.shout-form button {
  background: var(--coral);
  color: var(--bg);
  border: 2px outset var(--coral);
  padding: 2px 8px;
  font-family: "Comic Sans MS", cursive;
}
.shout-form input:disabled, .shout-form button:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================
   BLINKIES (handmade 88x31 buttons)
   ============================================================ */
.blinkie-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.blinkie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 31px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: bold;
  text-transform: lowercase;
  text-align: center;
  border: 1px solid #000;
  outline: 1px solid var(--ink);
  background: var(--pink);
  color: var(--bg);
  letter-spacing: 0.5px;
  user-select: none;
  padding: 0 4px;
  line-height: 1;
}
.blinkie[data-blink="1"] { animation: blink 1.2s steps(2) infinite; }

/* color via inline data-attrs */
.blinkie[data-bg="#ff2e9a"][data-fg="#0e0e10"] { background: #ff2e9a; color: #0e0e10; }
.blinkie[data-bg="#0e0e10"][data-fg="#9eff00"] { background: #0e0e10; color: #9eff00; }
.blinkie[data-bg="#00e5ff"][data-fg="#0e0e10"] { background: #00e5ff; color: #0e0e10; }
.blinkie[data-bg="#9eff00"][data-fg="#0e0e10"] { background: #9eff00; color: #0e0e10; }
.blinkie[data-bg="#ffd64a"][data-fg="#0e0e10"] { background: #ffd64a; color: #0e0e10; }
.blinkie[data-bg="#0e0e10"][data-fg="#ff2e9a"] { background: #0e0e10; color: #ff2e9a; }
.blinkie[data-bg="#ff2e9a"][data-fg="#f4f4f0"] { background: #ff2e9a; color: #f4f4f0; }
.blinkie[data-bg="#0e0e10"][data-fg="#00e5ff"] { background: #0e0e10; color: #00e5ff; }

/* ============================================================
   BLURBS
   ============================================================ */
.blurb-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.blurb {
  background: #0a0a0c;
  border-left: 4px solid var(--cyan);
  padding: 8px 10px;
  font-size: 13px;
}
.blurb:nth-child(2) { border-left-color: var(--pink); }
.blurb:nth-child(3) { border-left-color: var(--lime); }
.blurb:nth-child(4) { border-left-color: var(--yellow); }
.blurb:nth-child(5) { border-left-color: var(--coral); }
.blurb time {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--ink-dim);
  margin-bottom: 4px;
}
.blurb h4 { margin: 0 0 4px; font-size: 13px; color: var(--yellow); }
.blurb p { margin: 4px 0; }

/* ============================================================
   THE LAB - project cards (NOT a uniform grid)
   ============================================================ */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.lab-grid.archive { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: #0a0a0c;
  padding: 14px;
  font-size: 13px;
  min-height: 140px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.card .era {
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: normal;
  color: var(--ink-dim);
  margin-left: 6px;
}
.card p { margin: 6px 0; }
.card .stack { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.chip {
  display: inline-block;
  padding: 2px 6px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  background: #1a1a1f;
  color: var(--cyan);
  border: 1px solid #333;
}
.card .links { font-family: "Courier New", monospace; font-size: 12px; }
.card .links a { margin-right: 8px; }

/* per-card flair */
.card-practice { border: 3px ridge #ece7dc; background: #0a0a0c; }
.card-practice h3 { color: #ece7dc; font-family: Georgia, "Times New Roman", serif; }
.card-typhoon  { border: 3px ridge var(--coral); background: #0a0a0c; }
.card-typhoon h3 { color: var(--coral); }
.card-eb       { border: 3px outset var(--lime); background: #0a0a0c; }
.card-eb h3    { color: var(--lime); }
.card-sly      { border: 3px ridge var(--cyan); background: #0a0a0c; }
.card-sly h3   { color: var(--cyan); }

.tilt-l { transform: rotate(-1.5deg); }
.tilt-r { transform: rotate(1.2deg); }

/* stickers stuck on card corners */
.sticker {
  position: absolute;
  width: 44px;
  height: 44px;
  z-index: 2;
  filter: drop-shadow(2px 2px 0 #000);
}
.sticker-tl { top: -14px; left: -14px; transform: rotate(-12deg); }
.sticker-tr { top: -14px; right: -14px; transform: rotate(8deg); }
.sticker.construction { width: 70px; height: 36px; }

/* the archive (rip cards) */
.archive-head {
  text-align: center;
  margin: 18px 0 8px;
  font-family: "Courier New", monospace;
  color: var(--rip);
  letter-spacing: 2px;
}
.card-rip {
  border: 3px dashed var(--rip);
  background: #1a0808;
  filter: grayscale(0.4);
}
.card-rip h3 { color: var(--rip); }
.rip-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--rip);
  border: 2px solid var(--rip);
  padding: 2px 6px;
  transform: rotate(8deg);
  background: rgba(178,34,34,0.1);
  letter-spacing: 1px;
}

/* ============================================================
   STUDIO
   ============================================================ */
.scene-list { padding-left: 18px; margin: 6px 0; }
.scene-list li { margin: 6px 0; }
.scene-list b { color: var(--yellow); }
.box-studio p { font-size: 13px; }

/* ============================================================
   DEPT (5 cols)
   ============================================================ */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.dept-grid .col {
  background: #0a0a0c;
  border: 1px solid #2a2a30;
  padding: 8px;
  font-size: 12px;
}
.dept-grid h4 {
  margin: 0 0 6px;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  color: var(--bg);
  background: var(--lime);
  padding: 2px 4px;
  text-align: center;
}
.dept-grid .col-eng h4 { background: var(--cyan); }
.dept-grid .col-phys h4 { background: var(--pink); }
.dept-grid .col-creative h4 { background: var(--yellow); }
.dept-grid .col-scene h4 { background: var(--coral); }
.dept-grid .col-loves h4 { background: var(--lime); }
.dept-grid ul { list-style: none; padding: 0; margin: 0; font-family: "Courier New", monospace; }
.dept-grid li { padding: 2px 0; border-bottom: 1px dotted #2a2a30; }

/* ============================================================
   OBSESSIONS
   ============================================================ */
.obs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.obs {
  background: #0a0a0c;
  border: 2px solid var(--coral);
  padding: 10px;
  font-size: 12px;
}
.obs:nth-child(2) { border-color: var(--cyan); transform: rotate(-0.8deg); }
.obs:nth-child(3) { border-color: var(--lime); }
.obs:nth-child(4) { border-color: var(--yellow); transform: rotate(0.6deg); }
.obs:nth-child(5) { border-color: var(--pink); }
.obs:nth-child(6) { border-color: var(--coral); transform: rotate(-0.4deg); }
.obs h5 { margin: 0 0 4px; font-size: 13px; color: var(--yellow); }
.obs p { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin: 24px 16px;
  padding: 16px;
  border: 4px ridge var(--lime);
  background: #16161a;
  text-align: center;
  font-family: "Courier New", monospace;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.webring { font-size: 13px; }
.visitor .counter-label { color: var(--ink-dim); }
.visitor .counter-num {
  display: inline-block;
  background: #000;
  color: var(--lime);
  padding: 2px 8px;
  border: 2px inset #444;
  font-weight: bold;
  letter-spacing: 2px;
}
.lastmod { color: var(--ink-dim); }
.contact { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.contact a, .contact button {
  background: var(--bg);
  color: var(--cyan);
  border: 2px outset var(--cyan);
  padding: 4px 10px;
  text-decoration: none;
  font-family: "Courier New", monospace;
}
.contact button:active { border-style: inset; }
.email-out {
  background: var(--lime);
  color: var(--bg);
  padding: 4px 8px;
  border: 2px inset var(--lime);
  user-select: all;
}
.bye { color: var(--pink); font-size: 14px; }
.stat-strip { color: var(--ink-dim); font-size: 11px; letter-spacing: 1px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg);
  padding: 8px 16px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  border: 2px outset var(--lime);
  z-index: 10000;
  animation: pop 0.2s ease-out;
}
@keyframes pop {
  from { transform: translateX(-50%) scale(0.8); opacity: 0; }
  to   { transform: translateX(-50%) scale(1);   opacity: 1; }
}

/* ============================================================
   MOBILE - stack everything
   ============================================================ */
@media (max-width: 900px) {
  .page { grid-template-columns: 1fr; }
  .rail { position: static; }
  .lab-grid, .lab-grid.archive { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .obs-grid { grid-template-columns: repeat(2, 1fr); }
  .wordmark { font-size: clamp(36px, 12vw, 64px); }
}
@media (max-width: 480px) {
  .dept-grid { grid-template-columns: 1fr; }
  .obs-grid { grid-template-columns: 1fr; }
  .blinkie-wall { justify-content: center; }
  .banner { padding: 16px 12px 8px; margin: 8px 8px 0; }
  .page { padding: 8px; gap: 12px; }
  .footer { margin: 12px 8px; }
}

/* ============================================================
   REDUCE MOTION - take pity on people
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track, #player-now { animation: none !important; transform: none !important; padding-left: 0 !important; white-space: normal; }
  .tilt-l, .tilt-r, .box-shoutbox, .box-studio, .obs:nth-child(2), .obs:nth-child(4), .obs:nth-child(6) { transform: none !important; }
  .player-bars i { animation: none !important; transform: scaleY(0.4) !important; }
  body::after { display: none; }
}
