:root {
  --bg: #08070d;
  --bg-2: #111019;
  --panel: rgba(18, 13, 25, 0.78);
  --panel-strong: rgba(28, 18, 35, 0.92);
  --line: rgba(255, 83, 170, 0.55);
  --line-soft: rgba(255, 168, 218, 0.22);
  --text: #fff2fb;
  --muted: #c8a8bc;
  --hot: #ff4dac;
  --pink: #ff8ed0;
  --lime: #a8ff69;
  --cyan: #57ffe8;
  --shadow: 0 24px 80px rgba(255, 44, 150, 0.18);
  --mono: "Courier New", Courier, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 2%, rgba(255, 59, 169, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 14%, rgba(87, 255, 232, 0.08), transparent 30rem),
    linear-gradient(180deg, #06060b 0%, var(--bg) 42%, #100912 100%);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 77, 172, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 172, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050308;
  color: var(--text);
  transition: opacity 640ms ease, visibility 640ms ease;
}

.boot-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: saturate(1.16) contrast(1.12) brightness(0.72);
  transform: scale(1.02);
}

.boot-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 32%, rgba(255, 77, 172, 0.24), transparent 24rem),
    linear-gradient(90deg, rgba(5, 3, 8, 0.88), rgba(5, 3, 8, 0.45) 54%, rgba(5, 3, 8, 0.86)),
    repeating-linear-gradient(0deg, rgba(255, 242, 251, 0.045), rgba(255, 242, 251, 0.045) 1px, transparent 1px, transparent 6px);
}

.boot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 77, 172, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 172, 0.32) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.boot-content {
  position: relative;
  width: min(900px, calc(100% - 2rem));
  padding: clamp(4rem, 13vh, 8rem) 0;
}

.system-line {
  margin: 0 0 0.9rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.boot-content h1 {
  max-width: none;
  margin: 0;
  color: #fff8fc;
  font-family: var(--mono);
  font-size: clamp(3.25rem, 9vw, 7rem);
  line-height: 0.86;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(255, 77, 172, 0.85),
    0 0 48px rgba(255, 77, 172, 0.44);
}

.boot-copy {
  width: min(620px, 100%);
  margin: 1.25rem 0 1.6rem;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.enter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--hot);
  color: #120510;
  background: linear-gradient(135deg, var(--hot), #ffd0ea);
  box-shadow: 0 0 32px rgba(255, 77, 172, 0.42);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.enter-button:hover,
.enter-button:focus-visible {
  color: #030104;
  background: linear-gradient(135deg, var(--lime), #fff2fb);
}

.peek-link,
.boot-footer {
  position: absolute;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.peek-link {
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  text-decoration: none;
}

.peek-link:hover {
  color: var(--lime);
}

.boot-footer {
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 7, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--lime);
  background: rgba(255, 77, 172, 0.12);
  box-shadow: 0 0 24px rgba(255, 77, 172, 0.25);
  font-family: var(--mono);
  font-weight: 700;
}

.brand strong,
.brand small,
.eyebrow,
nav a,
.button,
.system-readout,
.track-number,
.site-footer {
  font-family: var(--mono);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.chapter-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.7rem;
  border-left: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.2;
  text-decoration: none;
}

.chapter-link span {
  color: var(--pink);
}

.chapter-link strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.chapter-link:hover strong,
.chapter-link:hover span {
  color: var(--lime);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
}

nav a {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(20rem, 1.05fr);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2.25rem) clamp(1rem, 4vw, 3rem);
}

.hero-media {
  position: relative;
}

.hero-media::after,
.player-art::after,
.profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}

.hero-media img {
  width: min(100%, 680px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  max-height: min(760px, 70vh);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 46rem;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--pink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: 0 0 32px rgba(255, 77, 172, 0.55);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.lede {
  max-width: 40rem;
  color: #f7d9e9;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

.hero-actions,
.debut-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 77, 172, 0.1);
  text-decoration: none;
  box-shadow: 0 0 22px rgba(255, 77, 172, 0.16);
}

.button:hover,
.track-card:hover {
  border-color: rgba(255, 180, 224, 0.9);
  background: rgba(255, 77, 172, 0.18);
}

.button.primary {
  color: #160711;
  background: var(--hot);
  border-color: var(--hot);
  font-weight: 700;
}

.system-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.system-readout div,
.story-steps article,
.debut-section {
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.system-readout div {
  padding: 0.75rem;
}

.system-readout dt {
  color: var(--muted);
  font-size: 0.72rem;
}

.system-readout dd {
  margin: 0.25rem 0 0;
  color: var(--lime);
  overflow-wrap: anywhere;
}

.archive-player {
  display: grid;
  grid-template-columns: minmax(22rem, 1.1fr) minmax(16rem, 0.72fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  margin: 0 clamp(1rem, 4vw, 3rem) clamp(2rem, 4vw, 4rem);
  padding: 1rem;
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(255, 77, 172, 0.18), rgba(87, 255, 232, 0.06));
}

.player-now,
.playlist-panel,
.lyrics-panel {
  border: 1px solid var(--line-soft);
  background: rgba(9, 8, 14, 0.7);
}

.player-now {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
}

.player-art,
.profile-image {
  position: relative;
}

.player-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.player-main h2 {
  margin-bottom: 0.35rem;
  font-family: var(--mono);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
}

.player-main {
  min-width: 0;
}

.player-main p:not(.eyebrow) {
  color: var(--muted);
}

audio {
  width: 100%;
  max-width: 48rem;
  accent-color: var(--hot);
}

.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.button.small,
.icon-button {
  min-height: 2.25rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.78rem;
}

.icon-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 77, 172, 0.1);
  font-family: var(--mono);
  cursor: pointer;
}

.icon-button:hover,
.playlist-item:hover,
.playlist-item.active {
  border-color: rgba(255, 180, 224, 0.9);
  background: rgba(255, 77, 172, 0.18);
}

.panel-heading {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}

.panel-heading strong {
  display: block;
  font-family: var(--mono);
}

.playlist-list {
  max-height: 29rem;
  overflow: auto;
}

.playlist-item {
  width: 100%;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.playlist-item img {
  width: 3.2rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.playlist-item small,
.post-meta,
.status-stack span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.playlist-item strong {
  display: block;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lyrics-panel pre {
  max-height: 29rem;
  margin: 0;
  padding: 1rem;
  overflow: auto;
  color: #f6d4e7;
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.65;
  white-space: pre-wrap;
}

.archive-section,
.story-section,
.profile-section,
.debut-section,
.social-page {
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 1.5rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.track-card {
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line-soft);
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.track-card:hover,
.track-card:focus-visible {
  transform: translateY(-3px);
}

.track-card.active {
  border-color: var(--hot);
  box-shadow: 0 0 0 1px rgba(255, 77, 172, 0.35), 0 18px 52px rgba(255, 77, 172, 0.18);
}

.track-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.track-card-body {
  padding: 0.85rem;
}

.track-number {
  color: var(--lime);
  font-size: 0.8rem;
}

.track-card h3 {
  margin: 0.3rem 0;
  font-family: var(--mono);
  font-size: 1rem;
}

.track-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.story-steps article {
  padding: 1rem;
}

.story-steps span {
  color: var(--hot);
  font-family: var(--mono);
}

.story-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(18rem, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.profile-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.profile-copy p {
  color: #f4d8e7;
  font-size: 1.05rem;
}

.profile-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.profile-list li {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.profile-list strong {
  color: var(--text);
}

.debut-section {
  justify-content: space-between;
  margin: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.debut-section p {
  max-width: 54rem;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.social-page {
  padding-top: clamp(1.25rem, 4vw, 3rem);
}

.social-hero {
  display: grid;
  grid-template-columns: minmax(20rem, 1.2fr) minmax(16rem, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.social-profile,
.status-stack article,
.feed-card {
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.social-profile {
  display: grid;
  grid-template-columns: minmax(10rem, 17rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
}

.avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.social-profile h1 {
  font-size: clamp(2.4rem, 4.7vw, 4.25rem);
  overflow-wrap: normal;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-stack {
  display: grid;
  gap: 1rem;
}

.status-stack article,
.feed-card {
  padding: 1rem;
}

.status-stack strong {
  display: block;
  margin: 0.3rem 0;
  color: var(--lime);
  font-family: var(--mono);
}

.status-stack p,
.feed-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.twitch-section {
  margin-top: 1rem;
}

.twitch-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(17rem, 0.85fr) minmax(16rem, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(145, 70, 255, 0.16), rgba(255, 77, 172, 0.14)),
    var(--panel);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.twitch-copy,
.twitch-terminal,
.twitch-rules article {
  min-width: 0;
  border: 1px solid var(--line-soft);
  background: rgba(9, 8, 14, 0.62);
}

.twitch-copy {
  padding: 1rem;
}

.twitch-copy h2 {
  font-family: var(--mono);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  text-shadow: 0 0 28px rgba(145, 70, 255, 0.55);
}

.twitch-copy p:not(.eyebrow) {
  color: #f2d9e8;
}

.twitch-terminal {
  overflow: hidden;
  font-family: var(--mono);
}

.terminal-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--lime);
  background: rgba(255, 77, 172, 0.16);
  font-size: 0.78rem;
}

.terminal-body {
  padding: 1rem;
}

.terminal-body strong {
  display: block;
  color: var(--text);
  font-size: 1.4rem;
}

.terminal-body p {
  color: var(--muted);
  font-size: 0.88rem;
}

.terminal-body ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.terminal-body li {
  display: flex;
  gap: 0.6rem;
  padding: 0.42rem 0;
  border-top: 1px solid var(--line-soft);
  color: #f8d9e9;
  font-size: 0.84rem;
}

.terminal-body li span {
  color: var(--lime);
}

.twitch-rules {
  display: grid;
  gap: 1rem;
}

.twitch-rules article {
  padding: 1rem;
}

.twitch-rules p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.feed-card {
  min-height: 12rem;
}

.fun-post {
  background:
    linear-gradient(135deg, rgba(255, 77, 172, 0.22), rgba(87, 255, 232, 0.08)),
    var(--panel);
}

.sticker-post {
  min-height: 10rem;
  border-color: rgba(168, 255, 105, 0.36);
  background:
    linear-gradient(135deg, rgba(168, 255, 105, 0.08), rgba(255, 77, 172, 0.14)),
    var(--panel);
}

.sticker-post .post-copy {
  color: #ffe7f4;
  font-family: var(--mono);
}

.mini-player-card {
  border-color: rgba(87, 255, 232, 0.32);
  background:
    linear-gradient(180deg, rgba(87, 255, 232, 0.08), rgba(255, 77, 172, 0.12)),
    var(--panel);
}

.mini-player-card strong {
  display: block;
  margin: 0.45rem 0;
  font-family: var(--mono);
  font-size: 1.25rem;
}

.pixel-controls {
  margin-top: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-soft);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.featured-post {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.feed-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

.feed-card h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.post-copy {
  font-size: 1.1rem;
}

.reactions {
  margin-top: 1rem;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.chat-card p + p {
  margin-top: 0.6rem;
}

.stream-dashboard,
.track-social-section {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.widget-card,
.track-social-grid article {
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.widget-card {
  min-height: 15rem;
  padding: 1rem;
}

.redeem-list,
.set-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.redeem-list li,
.set-list li {
  display: flex;
  gap: 0.65rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.redeem-list span,
.track-social-grid span {
  color: var(--lime);
  font-family: var(--mono);
}

.meter-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 3rem;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.meter-row span {
  height: 0.55rem;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, var(--hot) var(--value), rgba(255, 77, 172, 0.12) var(--value));
}

.meter-row em {
  color: var(--lime);
  font-style: normal;
  text-align: right;
}

.track-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.track-social-grid article {
  min-height: 12rem;
  padding: 1rem;
}

.track-social-grid strong {
  display: block;
  margin: 0.5rem 0;
  font-family: var(--mono);
}

.track-social-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .hero,
  .profile-section,
  .story-steps,
  .archive-player,
  .social-hero,
  .twitch-panel,
  .social-grid,
  .stream-grid,
  .track-social-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media img {
    width: 100%;
    max-height: 72vh;
    object-position: center 28%;
  }
}

@media (max-width: 640px) {
  .boot-bg {
    object-position: 55% center;
    opacity: 0.36;
  }

  .boot-shade {
    background:
      linear-gradient(180deg, rgba(5, 3, 8, 0.7), rgba(5, 3, 8, 0.92)),
      repeating-linear-gradient(0deg, rgba(255, 242, 251, 0.045), rgba(255, 242, 251, 0.045) 1px, transparent 1px, transparent 6px);
  }

  .boot-content {
    align-self: center;
    padding: 4rem 0 7rem;
  }

  .boot-content h1 {
    font-size: clamp(2.65rem, 12vw, 3.6rem);
  }

  .peek-link {
    right: auto;
    left: 1rem;
    bottom: 1rem;
  }

  .boot-footer {
    display: none;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-cluster {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .chapter-link {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 0.55rem 0 0;
  }

  nav {
    justify-content: flex-start;
  }

  .player-now,
  .featured-post,
  .social-profile {
    grid-template-columns: 1fr;
  }

  .system-readout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .system-readout div {
    padding: 0.55rem;
    min-width: 0;
  }

  .system-readout dt,
  .system-readout dd {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 2.85rem);
    word-break: break-word;
  }

  .lede {
    font-size: 1rem;
  }

  .hero-media img {
    max-height: 42vh;
    object-position: center 18%;
  }

  .player-art img {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .boot-screen {
    transition: none;
  }
}
