:root {
  --black: #070509;
  --ink: #171019;
  --white: #fffaf0;
  --cream: #f7f1dc;
  --hot-pink: #ff2aa3;
  --bubble-pink: #ff86cf;
  --acid: #f5ff31;
  --aqua: #36ffe2;
  --xp-blue: #2368d9;
  --xp-blue-dark: #0b3ca5;
  --xp-green: #37b533;
  --violet: #7027ff;
  --orange: #ff8d2b;
  --shadow: #080008;
  --cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M3 2v24l6.5-6.2 4.3 9.6 4.2-1.9-4.4-9.4H23L3 2z' fill='%23fff' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M6 7v12.2l3.9-3.7 1.3 2.8 1.6-.7-1.7-3.7h5.6L6 7z' fill='%23f6f6f6'/%3E%3C/svg%3E") 3 2, auto;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  cursor: var(--cursor);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 12%, rgba(54, 255, 226, 0.35), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(255, 42, 163, 0.42), transparent 30rem),
    radial-gradient(circle at 48% 72%, rgba(245, 255, 49, 0.16), transparent 26rem),
    linear-gradient(135deg, #09020e 0%, #18051e 42%, #07151b 100%);
  font-family: Tahoma, Verdana, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

a,
button,
.draggable {
  cursor: var(--cursor);
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 112px;
}

button {
  font: inherit;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #000;
  animation: bootOut 1s 2.35s forwards;
}

.boot-screen.is-done {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity 420ms ease, visibility 420ms ease, transform 420ms ease;
}

.boot-box {
  width: min(86vw, 620px);
  padding: 28px;
  color: #d9fff9;
  border: 2px solid #c8fff8;
  box-shadow: 0 0 0 6px #0c1a20, 0 0 60px rgba(54, 255, 226, 0.45);
  text-align: center;
  background: linear-gradient(180deg, #051015, #000);
}

.boot-box h1 {
  margin: 8px 0 16px;
  color: var(--white);
  font: 900 clamp(3rem, 14vw, 8rem) / 0.8 "Arial Black", Impact, fantasy;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--hot-pink), 8px 8px 0 var(--xp-blue);
}

.bios-line {
  margin: 0;
  color: var(--aqua);
  font: 700 0.8rem / 1.4 "Courier New", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boot-progress {
  height: 22px;
  padding: 3px;
  border: 2px inset #cfcfcf;
  background: #131313;
}

.boot-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: repeating-linear-gradient(90deg, var(--xp-green) 0 18px, #78e66e 18px 22px);
  animation: bootLoad 2s steps(18) forwards;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(54, 255, 226, 0.7);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-50px, -50px, 0);
  transition: opacity 160ms ease;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.22;
  background: repeating-linear-gradient(180deg, transparent 0 2px, rgba(0, 0, 0, 0.45) 3px 4px);
}

.wallpaper-orbs span {
  position: fixed;
  z-index: -2;
  width: 34vmax;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 38% 62% 41% 59%;
  filter: blur(1px);
  animation: blobSpin 24s linear infinite;
}

.wallpaper-orbs span:nth-child(1) {
  top: 8%;
  left: -10%;
  background: rgba(255, 42, 163, 0.08);
}

.wallpaper-orbs span:nth-child(2) {
  right: -14%;
  bottom: 6%;
  background: rgba(54, 255, 226, 0.07);
  animation-duration: 31s;
  animation-direction: reverse;
}

.wallpaper-orbs span:nth-child(3) {
  top: 34%;
  left: 38%;
  width: 22vmax;
  background: rgba(245, 255, 49, 0.05);
  animation-duration: 19s;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(94vw, 1120px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px;
  border: 2px solid var(--white);
  border-radius: 18px;
  background: rgba(7, 5, 9, 0.7);
  box-shadow: 6px 6px 0 #000, inset 0 0 18px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 72px;
  padding: 7px 10px;
  border: 2px outset #fff;
  border-radius: 12px 8px 16px 8px;
  color: #061416;
  background: linear-gradient(135deg, var(--acid), var(--aqua));
  font: 950 1rem / 1 "Arial Black", Impact, fantasy;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
}

.brand-badge span:first-child {
  font-size: 1.45rem;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.site-header nav a,
.header-link {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header nav a:hover,
.header-link:hover {
  color: #070509;
  background: var(--acid);
  transform: translateY(-2px) rotate(-2deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  padding: 130px clamp(18px, 5vw, 72px) 96px;
  perspective: 1200px;
}

.desktop-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.desktop-icon {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  place-items: center;
  width: 84px;
  gap: 8px;
  color: white;
  border: 0;
  background: transparent;
  text-shadow: 2px 2px 0 #000;
  pointer-events: auto;
  animation: iconFloat 5s ease-in-out infinite;
}

.desktop-icon:nth-child(even) {
  animation-delay: -2s;
}

.desktop-icon b {
  padding: 2px 5px;
  background: rgba(0, 48, 180, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.folder-shape,
.cd-shape,
.spark-file,
.winamp-shape {
  display: block;
  width: 48px;
  height: 42px;
  filter: drop-shadow(3px 4px 0 #000);
}

.folder-shape {
  border: 3px solid #000;
  border-radius: 5px;
  background: linear-gradient(#ffd84f 0 34%, #f4ad15 34%);
  clip-path: polygon(0 18%, 28% 18%, 34% 0, 63% 0, 70% 18%, 100% 18%, 100% 100%, 0 100%);
}

.cd-shape {
  border: 5px solid var(--white);
  border-radius: 50%;
  background: conic-gradient(var(--hot-pink), var(--aqua), var(--acid), var(--hot-pink));
}

.spark-file {
  border: 3px solid #000;
  background: linear-gradient(135deg, #fff 0 66%, var(--aqua) 66%);
  clip-path: polygon(0 0, 70% 0, 100% 28%, 100% 100%, 0 100%);
}

.winamp-shape {
  border: 3px solid #000;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a2dff, #9bff4e);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 12px;
  color: #070509;
  border: 2px solid #070509;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 4px 4px 0 #000;
  font: 900 0.78rem / 1 "Courier New", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chrome-title {
  position: relative;
  margin: 0;
  color: var(--white);
  font: 950 clamp(5.2rem, 18vw, 15rem) / 0.72 "Arial Black", Impact, fantasy;
  letter-spacing: -0.14em;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 var(--hot-pink),
    8px 8px 0 var(--violet),
    12px 12px 0 #000;
  transform: skewX(-8deg);
}

.chrome-title span:last-child {
  display: block;
  margin-left: 0.44em;
  color: transparent;
  -webkit-text-stroke: 3px var(--white);
  text-shadow:
    4px 4px 0 var(--aqua),
    8px 8px 0 #000;
}

.chrome-title::after {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 92%;
  height: 26px;
  content: "";
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: 0 0 0 3px #000, 0 0 28px var(--aqua);
}

.tagline {
  max-width: 630px;
  margin: 26px 0 0;
  color: #fff9cf;
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 2px 2px 0 #000;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.xp-button,
.mini-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #00134a;
  border: 2px outset #fff;
  border-radius: 8px;
  background: linear-gradient(#fff9c8, #f7bd2d);
  box-shadow: 5px 5px 0 #000;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.xp-button.primary {
  color: #050009;
  background: linear-gradient(180deg, var(--aqua), #58a6ff);
}

.xp-button:hover,
.mini-button:hover {
  box-shadow: 2px 2px 0 #000;
  transform: translate(3px, 3px);
}

.space-stage {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
  animation: stageBreathe 8s ease-in-out infinite;
}

.portal-ring {
  position: absolute;
  inset: 14% 7%;
  border: 7px double rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow:
    inset 0 0 60px rgba(54, 255, 226, 0.48),
    0 0 40px rgba(255, 42, 163, 0.7);
  transform: rotateX(66deg) rotateZ(-12deg) translateZ(-80px);
  animation: ringSpin 12s linear infinite;
}

.planet-cd {
  position: absolute;
  top: 24%;
  left: 29%;
  display: grid;
  place-items: center;
  width: min(34vw, 330px);
  aspect-ratio: 1;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #050009;
  background:
    radial-gradient(circle, #fff 0 13%, transparent 13.5%),
    conic-gradient(from 90deg, #ff2aa3, #ffed35, #36ffe2, #6f33ff, #ff2aa3);
  box-shadow: 18px 22px 0 #000, 0 0 80px rgba(54, 255, 226, 0.5);
  transform: rotateX(16deg) rotateY(-22deg);
  animation: cdFloat 5s ease-in-out infinite;
}

.planet-cd span {
  padding: 10px 14px;
  border: 3px solid #000;
  border-radius: 999px;
  background: var(--white);
  font: 950 clamp(1rem, 3vw, 2.1rem) / 1 "Arial Black", Impact, fantasy;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.cd-hole {
  position: absolute;
  width: 24%;
  aspect-ratio: 1;
  border: 7px solid rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  background: #070509;
}

.orbit {
  position: absolute;
  inset: 9%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: orbitSpin 10s linear infinite;
}

.orbit-two {
  inset: 17%;
  animation-duration: 7s;
  animation-direction: reverse;
}

.orbit-three {
  inset: 0;
  animation-duration: 15s;
}

.sticker {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 9px 14px;
  border: 3px solid #000;
  color: #050009;
  font: 950 1.1rem / 1 "Arial Black", Impact, fantasy;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
}

.sticker-a {
  background: var(--aqua);
  transform: rotate(8deg);
}

.sticker-b {
  background: var(--acid);
  border-radius: 50%;
}

.sticker-c {
  background: var(--bubble-pink);
  clip-path: polygon(8% 0, 100% 14%, 88% 100%, 0 85%);
}

.floating-window,
.track-card,
.contact-card,
.crt-window {
  touch-action: none;
}

.floating-window {
  position: absolute;
  z-index: 5;
  overflow: hidden;
  width: min(70vw, 270px);
  border: 2px solid #fff;
  border-radius: 10px 10px 18px 10px;
  color: #08030d;
  background: var(--cream);
  box-shadow: 10px 12px 0 #000;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
}

.now-window {
  top: 7%;
  left: 3%;
}

.alert-window {
  right: 2%;
  bottom: 14%;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 7px;
  color: #fff;
  border-bottom: 2px solid #050009;
  background: linear-gradient(90deg, var(--xp-blue-dark), var(--xp-blue));
  font: 800 0.76rem / 1 Tahoma, Verdana, sans-serif;
  text-transform: lowercase;
}

.window-bar span {
  margin-right: auto;
}

.window-bar i {
  display: block;
  width: 13px;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 2px;
  background: linear-gradient(#fff, #cfcfcf);
}

.window-body {
  padding: 15px;
}

.window-body p {
  margin: 0 0 6px;
  color: #6c0068;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-body strong {
  display: block;
  font: 950 1.15rem / 1.1 "Arial Black", Impact, fantasy;
  letter-spacing: -0.04em;
}

.equalizer {
  display: flex;
  height: 72px;
  align-items: end;
  gap: 7px;
  margin-top: 12px;
}

.equalizer span {
  width: 18%;
  min-height: 18px;
  border: 2px solid #000;
  background: linear-gradient(var(--acid), var(--hot-pink));
  animation: equalize 700ms ease-in-out infinite alternate;
}

.equalizer span:nth-child(2) {
  animation-delay: -150ms;
}

.equalizer span:nth-child(3) {
  animation-delay: -310ms;
}

.equalizer span:nth-child(4) {
  animation-delay: -60ms;
}

.equalizer span:nth-child(5) {
  animation-delay: -420ms;
}

.mini-button {
  min-height: 34px;
  margin-top: 12px;
  padding: 6px 14px;
}

.ticker {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  overflow: hidden;
  border-block: 2px solid var(--white);
  background: #050009;
  transform: rotate(-1.5deg);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 9px 0;
  color: var(--acid);
  font: 950 1rem / 1 "Arial Black", Impact, fantasy;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 16s linear infinite;
}

.ticker span {
  white-space: nowrap;
  padding: 0 18px;
}

.sounds-section,
.about-section,
.faq-section,
.contact-section {
  position: relative;
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  padding: clamp(22px, 5vw, 52px);
  border: 3px solid #fff;
  border-radius: 16px;
  color: #08030d;
  background: linear-gradient(135deg, var(--cream), #c8fff9);
  box-shadow: 14px 17px 0 #000;
}

.about-panel h2,
.faq-section h2 {
  margin: 0;
  color: inherit;
  font: 950 clamp(2.4rem, 7vw, 6rem) / 0.86 "Arial Black", Impact, fantasy;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.about-panel p {
  margin: 18px 0 0;
  max-width: 720px;
  color: #170017;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 900;
  line-height: 1.55;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.fact-grid div,
.faq-list details {
  padding: 16px;
  border: 3px solid #000;
  border-radius: 14px;
  background: #fff;
  box-shadow: 5px 6px 0 #000;
}

.fact-grid dt {
  margin-bottom: 7px;
  color: #6c0068;
  font: 950 0.78rem / 1 "Courier New", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 0;
  font-weight: 950;
  line-height: 1.3;
}

.fact-grid a,
.faq-list a {
  color: #061b88;
  font-weight: 950;
}

.faq-section h2 {
  color: var(--white);
  text-shadow: 4px 4px 0 var(--hot-pink), 8px 8px 0 #000;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  color: #08030d;
  background: linear-gradient(135deg, var(--acid), var(--aqua));
}

.faq-list details:nth-child(2n) {
  background: linear-gradient(135deg, var(--bubble-pink), var(--cream));
}

.faq-list summary {
  min-height: 44px;
  font: 950 clamp(1.2rem, 3vw, 2rem) / 1 "Arial Black", Impact, fantasy;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.faq-list p {
  margin: 10px 0 0;
  max-width: 760px;
  font-weight: 900;
  line-height: 1.5;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(310px, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.section-grid h2,
.contact-body h2,
.crt-screen h2 {
  margin: 0;
  color: var(--white);
  font: 950 clamp(2.6rem, 8vw, 7.5rem) / 0.82 "Arial Black", Impact, fantasy;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--hot-pink), 8px 8px 0 #000;
}

.section-grid p,
.contact-body p,
.crt-screen p {
  max-width: 620px;
  color: #fff7d5;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 2px 2px 0 #000;
}

.sound-stack {
  position: relative;
  min-height: 500px;
}

.track-card {
  position: absolute;
  width: min(88vw, 460px);
  padding: 22px;
  border: 3px solid #000;
  border-radius: 20px 8px 30px 8px;
  color: #08030d;
  background: var(--cream);
  box-shadow: 12px 14px 0 #000;
}

.track-card:nth-child(1) {
  top: 20px;
  left: 4%;
  background: var(--aqua);
  transform: none;
}

.track-card:nth-child(2) {
  top: 180px;
  right: 0;
  background: var(--bubble-pink);
  transform: none;
}

.track-card:nth-child(3) {
  top: 332px;
  left: 13%;
  background: var(--acid);
  transform: none;
}

.track-card span {
  display: inline-flex;
  width: 48px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #050009;
  font: 950 1rem / 1 "Arial Black", Impact, fantasy;
}

.track-card h3 {
  margin: 16px 0 8px;
  font: 950 clamp(1.7rem, 4vw, 3.2rem) / 0.86 "Arial Black", Impact, fantasy;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.track-card p {
  margin: 0;
  color: #170017;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: none;
}

.zone-section {
  min-height: 100svh;
  padding: 80px clamp(18px, 5vw, 72px);
  perspective: 1100px;
}

.room {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 8px #000, inset 0 0 90px rgba(255, 42, 163, 0.28);
  transform-style: preserve-3d;
}

.room-plane {
  position: absolute;
  inset: auto;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 42px 42px;
}

.floor {
  right: -15%;
  bottom: -38%;
  left: -15%;
  height: 70%;
  background-color: rgba(54, 255, 226, 0.08);
  transform: rotateX(72deg);
}

.back {
  inset: 0;
  background-color: rgba(255, 42, 163, 0.06);
  transform: translateZ(-230px);
}

.left,
.right {
  top: 0;
  width: 42%;
  height: 100%;
  background-color: rgba(245, 255, 49, 0.04);
}

.left {
  left: -22%;
  transform: rotateY(66deg);
}

.right {
  right: -22%;
  transform: rotateY(-66deg);
}

.crt-window {
  position: absolute;
  top: 18%;
  left: 50%;
  z-index: 4;
  width: min(82vw, 620px);
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 16px;
  background: #d8d2bd;
  box-shadow: 18px 22px 0 #000, 0 0 70px rgba(54, 255, 226, 0.4);
  transform: translateX(-50%) rotateX(6deg) rotateY(-12deg);
}

.crt-screen {
  margin: 22px;
  padding: clamp(22px, 5vw, 48px);
  border: 8px solid #201820;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(54, 255, 226, 0.24), transparent 55%),
    linear-gradient(180deg, #14051c, #050009);
  box-shadow: inset 0 0 50px #000;
}

.poster-cloud span {
  position: absolute;
  padding: 11px 15px;
  border: 3px solid #000;
  color: #060009;
  background: var(--white);
  box-shadow: 8px 8px 0 #000;
  font: 950 clamp(1rem, 3vw, 2.1rem) / 0.9 "Arial Black", Impact, fantasy;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  animation: posterDrift 6s ease-in-out infinite;
}

.poster-cloud span:nth-child(1) {
  top: 12%;
  left: 9%;
  color: #fff;
  background: var(--hot-pink);
  transform: rotate(-12deg);
}

.poster-cloud span:nth-child(2) {
  right: 8%;
  bottom: 16%;
  background: var(--acid);
  transform: rotate(10deg);
  animation-delay: -1.7s;
}

.poster-cloud span:nth-child(3) {
  bottom: 8%;
  left: 14%;
  background: var(--aqua);
  transform: rotate(-4deg);
  animation-delay: -2.4s;
}

.poster-cloud span:nth-child(4) {
  top: 13%;
  right: 18%;
  background: var(--cream);
  transform: rotate(4deg);
  animation-delay: -3.6s;
}

.contact-section {
  display: grid;
  min-height: 86svh;
  place-items: center;
  padding-bottom: 128px;
}

.contact-card {
  position: relative;
  width: min(94vw, 850px);
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 16px;
  color: #08030d;
  background: linear-gradient(135deg, var(--cream), #c8fff9);
  box-shadow: 18px 22px 0 #000;
  transform: rotate(-1.2deg);
}

.contact-body {
  padding: clamp(24px, 6vw, 60px);
}

.contact-body h2 {
  color: #08030d;
  text-shadow: 3px 3px 0 var(--hot-pink), 6px 6px 0 var(--acid);
}

.contact-body p {
  color: #170017;
  text-shadow: none;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.link-grid a {
  min-height: 54px;
  padding: 14px;
  color: #fff;
  border: 3px solid #000;
  border-radius: 12px;
  background: #070509;
  box-shadow: 5px 5px 0 var(--hot-pink);
  font-weight: 950;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-grid a:hover {
  box-shadow: 2px 2px 0 var(--hot-pink);
  transform: translate(3px, 3px);
}

.xp-taskbar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 5px 9px;
  border-top: 2px solid #69a4ff;
  background: linear-gradient(180deg, #2f8fff, #0f43b4 52%, #0b3194);
  box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.55);
}

.start-button,
.task-items a,
.xp-taskbar time {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: lowercase;
  text-shadow: 1px 1px 0 #000;
}

.start-button {
  border-radius: 999px;
  background: linear-gradient(#63db62, #1d7e1c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.start-button span {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #f44336 0 50%, #35a0ff 50%),
    linear-gradient(#34d058 0 50%, #ffd33d 50%);
}

.task-items {
  display: flex;
  min-width: 0;
  gap: 6px;
  overflow: auto;
}

.task-items a {
  min-width: 104px;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.15);
}

.xp-taskbar time {
  background: rgba(0, 0, 0, 0.18);
  font-family: "Courier New", monospace;
}

.dragging {
  z-index: 25 !important;
  filter: saturate(1.3) drop-shadow(0 0 18px rgba(54, 255, 226, 0.55));
}

@keyframes bootLoad {
  to {
    width: 100%;
  }
}

@keyframes bootOut {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
  }
}

@keyframes blobSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes iconFloat {
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes stageBreathe {
  50% {
    transform: rotateX(1deg) rotateY(-2deg) translateY(-8px);
  }
}

@keyframes ringSpin {
  to {
    transform: rotateX(66deg) rotateZ(348deg) translateZ(-80px);
  }
}

@keyframes cdFloat {
  50% {
    transform: rotateX(20deg) rotateY(-12deg) translateY(-18px) rotateZ(8deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes equalize {
  from {
    height: 20%;
  }
  to {
    height: 100%;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes posterDrift {
  50% {
    translate: 0 -16px;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: stretch;
    border-radius: 14px;
  }

  .header-link {
    display: none;
  }

  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .space-stage {
    min-height: 560px;
  }

  .planet-cd {
    width: min(68vw, 300px);
  }

  .desktop-icon {
    opacity: 0.65;
    transform: scale(0.86);
  }

  .sound-stack {
    min-height: 650px;
  }

  .track-card {
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: min(100%, 560px);
    margin: 0 auto 18px;
    transform: none !important;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100vw - 14px);
    gap: 8px;
  }

  .brand-badge {
    min-width: auto;
  }

  .site-header nav a {
    padding: 8px 9px;
    font-size: 0.68rem;
  }

  .hero {
    padding-inline: 14px;
  }

  .chrome-title {
    font-size: clamp(4.8rem, 27vw, 8rem);
  }

  .space-stage {
    min-height: 520px;
  }

  .floating-window {
    width: 230px;
  }

  .now-window {
    top: 0;
  }

  .alert-window {
    bottom: 2%;
  }

  .poster-cloud span {
    display: none;
  }

  .zone-section {
    padding-inline: 14px;
  }

  .crt-window {
    top: 13%;
  }

  .xp-taskbar {
    grid-template-columns: auto 1fr;
  }

  .xp-taskbar time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .boot-screen {
    display: none;
  }
}

/* Kaksha feature pass */
.boot-names {
  margin-top: 8px;
  word-spacing: 0.55em;
}

.brand-badge {
  min-width: 112px;
  justify-content: center;
  letter-spacing: -0.06em;
}

.brand-badge span:first-child {
  font-size: 1.2rem;
}

.desktop-icons {
  z-index: 3;
}

.desktop-icon {
  color: white;
  text-decoration: none;
}

.desktop-icon:focus-visible,
.song-card:focus-visible,
.platform-grid a:focus-visible,
.lyric-card:focus-visible,
.game-controls button:focus-visible,
.character-picker button:focus-visible,
.note-form button:focus-visible,
.note-form input:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.sound-hint {
  max-width: 560px !important;
  color: #9ffff1 !important;
  font-size: 0.95rem !important;
}

.sounds-grid {
  align-items: start;
}

.sound-stack {
  min-height: 760px;
}

.song-card {
  isolation: isolate;
  overflow: hidden;
  min-height: 214px;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.song-card::after {
  position: absolute;
  inset: -20% -30%;
  z-index: -1;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.8), transparent 18%), linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateY(20px) rotate(8deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.song-card:hover,
.song-card.is-playing,
.song-card:focus-visible {
  filter: saturate(1.22);
  box-shadow: 7px 8px 0 #000, 0 0 34px rgba(54, 255, 226, 0.42);
}

.song-card:hover::after,
.song-card.is-playing::after,
.song-card:focus-visible::after {
  opacity: 0.32;
  transform: translateY(0) rotate(0deg);
}

.track-card:nth-child(4) {
  top: 488px;
  right: 9%;
  background: #151019;
  color: var(--cream);
  transform: none;
}

.track-card:nth-child(4) p,
.track-card:nth-child(5) p {
  color: inherit;
}

.track-card:nth-child(5) {
  top: 620px;
  left: 2%;
  background: linear-gradient(135deg, var(--cream), var(--aqua));
  transform: none;
}

.song-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 10px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #050009;
  font: 950 0.72rem / 1 "Courier New", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-card.is-playing .song-status {
  background: var(--acid);
}

.song-embed {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: min(52%, 220px);
  height: 200px;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease;
}

.song-card.is-playing .song-embed:not(:empty) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.song-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.platforms-section {
  position: relative;
  display: grid;
  min-height: 88svh;
  place-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.platform-window,
.lyric-card {
  touch-action: none;
}

.platform-window {
  width: min(94vw, 980px);
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #08030d, #15102b 54%, #052a2f);
  box-shadow: 18px 22px 0 #000, 0 0 60px rgba(255, 42, 163, 0.24);
  transform: rotate(1deg);
}

.platform-body {
  padding: clamp(24px, 5vw, 58px);
}

.platform-body h2,
.lyrics-section h2 {
  margin: 0;
  color: var(--white);
  font: 950 clamp(2.8rem, 8vw, 7rem) / 0.82 "Arial Black", Impact, fantasy;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--hot-pink), 8px 8px 0 #000;
}

.platform-body p,
.lyrics-intro {
  max-width: 690px;
  color: #fff7d5;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 2px 2px 0 #000;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.platform-grid a {
  display: grid;
  flex: 0 0 calc(25% - 11px);
  min-height: 118px;
  align-content: space-between;
  padding: 16px;
  border: 3px solid #000;
  border-radius: 18px 8px 22px 8px;
  color: #070509;
  background: linear-gradient(135deg, var(--acid), var(--aqua));
  box-shadow: 7px 8px 0 #000;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.platform-grid a:nth-child(2n) {
  background: linear-gradient(135deg, var(--bubble-pink), var(--cream));
}

.platform-grid a:nth-child(3n) {
  background: linear-gradient(135deg, var(--aqua), #7ea7ff);
}

.platform-grid a:hover {
  filter: saturate(1.18);
  box-shadow: 3px 4px 0 #000;
  transform: translate(4px, 4px) rotate(-1deg);
}

.platform-grid span {
  font: 950 1.3rem / 0.95 "Arial Black", Impact, fantasy;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.platform-grid small {
  font-weight: 900;
  text-transform: uppercase;
}

.crt-window {
  top: 8%;
  width: min(90vw, 980px);
  transform: translateX(-50%) rotate(-1deg);
}

.crt-screen {
  padding: clamp(18px, 4vw, 38px);
}

.fan-lab {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.78fr);
  gap: 18px;
  margin-top: 24px;
}

.game-cabinet,
.whiteboard {
  border: 4px solid #000;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 8px 9px 0 #000;
  color: #08030d;
}

.game-cabinet {
  padding: 14px;
  background: linear-gradient(180deg, #151019, #030205);
  color: var(--cream);
}

.game-topline,
.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.game-topline h3,
.board-header h3,
.lyric-card h3 {
  margin: 0;
  font: 950 clamp(1.2rem, 3vw, 2rem) / 0.9 "Arial Black", Impact, fantasy;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.character-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.character-picker button,
.game-controls button,
.note-form button {
  min-height: 38px;
  padding: 8px 10px;
  border: 2px solid #000;
  border-radius: 8px;
  background: var(--aqua);
  box-shadow: 3px 3px 0 #000;
  color: #050009;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.character-picker button.is-selected,
.character-picker button:hover,
.game-controls button:hover,
.note-form button:hover {
  background: var(--acid);
  box-shadow: 1px 1px 0 #000;
  transform: translate(2px, 2px);
}

#kakshaGame {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1;
  border: 4px solid #000;
  border-radius: 12px;
  background: #08030d;
  image-rendering: pixelated;
}

.game-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.whiteboard {
  display: grid;
  min-height: 420px;
  grid-template-rows: auto auto minmax(250px, 1fr);
  padding: 14px;
  background:
    linear-gradient(rgba(54, 255, 226, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 255, 226, 0.2) 1px, transparent 1px),
    #f8fff8;
  background-size: 22px 22px;
}

.board-header small {
  font-weight: 900;
  text-transform: uppercase;
}

.note-form {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 12px;
}

.note-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.note-form input {
  min-height: 44px;
  min-width: 0;
  padding: 10px 12px;
  border: 3px solid #000;
  border-radius: 10px;
  background: #fff;
  color: #08030d;
  font: 800 0.95rem / 1.2 Tahoma, Verdana, sans-serif;
}

.sticky-board {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 260px;
  border: 3px dashed rgba(8, 3, 13, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.sticky-note {
  position: absolute;
  width: 150px;
  min-height: 100px;
  padding: 12px 10px 10px;
  border: 2px solid #000;
  border-radius: 6px 6px 18px 6px;
  background: var(--acid);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.85);
  color: #090309;
  transform: rotate(var(--note-tilt, -2deg));
}

.sticky-note:nth-child(2n) {
  background: var(--bubble-pink);
}

.sticky-note:nth-child(3n) {
  background: var(--aqua);
}

.sticky-note p {
  margin: 0;
  min-height: 58px;
  font: 900 0.85rem / 1.25 "Courier New", monospace;
  outline: 0;
}

.sticky-note button {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: 950;
}

.lyrics-section {
  position: relative;
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.lyric-card {
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 11px 13px 0 #000;
  color: #090309;
  transform: rotate(-1.5deg);
}

.lyric-card:nth-child(2) {
  transform: rotate(1.2deg);
}

.lyric-card:nth-child(3) {
  transform: rotate(-0.6deg);
}

.lyric-card > div:last-child {
  padding: 18px;
}

.lyric-card p {
  color: #170017;
  font-weight: 900;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .brand-badge {
    min-width: 88px;
  }

  .brand-badge span:first-child {
    font-size: 0.95rem;
  }

  .sound-stack {
    min-height: auto;
  }

  .track-card:nth-child(4),
  .track-card:nth-child(5) {
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: min(100%, 560px);
    margin: 0 auto 18px;
    transform: none !important;
  }

  .platform-grid a {
    flex: 0 0 calc(50% - 7px);
  }

  .lyrics-grid,
  .fan-lab,
  .about-panel,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .crt-window {
    width: min(90vw, 720px);
  }

  .room {
    min-height: 1280px;
  }

  .platform-window,
  .contact-card,
  .lyric-card {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header nav {
    max-width: 72vw;
  }

  .platform-grid a {
    flex: 0 0 100%;
    min-height: 96px;
  }

  .game-topline,
  .board-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-controls,
  .note-form {
    grid-template-columns: 1fr 1fr;
  }

  .note-form input,
  .note-form button {
    grid-column: 1 / -1;
  }

  .sticky-note {
    width: 132px;
  }

  .room {
    min-height: 1480px;
  }
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

img,
svg,
canvas,
iframe {
  max-width: 100%;
}

.xp-button:focus-visible,
.mini-button:focus-visible,
.start-button:focus-visible,
.task-items a:focus-visible,
.link-grid a:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

@media (hover: none), (pointer: coarse) {
  html,
  a,
  button,
  .draggable {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }

  .floating-window,
  .track-card,
  .contact-card,
  .crt-window,
  .platform-window,
  .lyric-card {
    touch-action: auto;
  }

  .wallpaper-orbs,
  .desktop-icons {
    display: none;
  }
}

@media (max-width: 760px) {
  main {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  .scanlines {
    opacity: 0.12;
  }

  .desktop-icons {
    display: none;
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top, 0px));
    width: calc(100vw - 16px);
    align-items: center;
    gap: 8px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 4px 4px 0 #000, inset 0 0 14px rgba(255, 255, 255, 0.1);
  }

  .brand-badge {
    flex: 0 0 auto;
    min-width: 82px;
    padding: 8px 9px;
  }

  .site-header nav {
    flex: 1 1 auto;
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-header nav::-webkit-scrollbar,
  .task-items::-webkit-scrollbar {
    display: none;
  }

  .site-header nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 12px 11px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 96px 14px 46px;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .chrome-title {
    display: inline-block;
    max-width: calc(100vw - 12px);
    margin-inline: auto;
    font-size: clamp(5.4rem, 30vw, 8.8rem);
    letter-spacing: -0.1em;
    line-height: 0.78;
    text-shadow: 3px 3px 0 var(--hot-pink), 6px 6px 0 var(--violet), 9px 9px 0 #000;
  }

  .chrome-title span:last-child {
    margin-left: 0.34em;
  }

  .chrome-title span:last-child {
    -webkit-text-stroke-width: 2px;
  }

  .chrome-title::after {
    height: 16px;
    border-width: 2px;
  }

  .tagline,
  .section-grid p,
  .contact-body p,
  .crt-screen p,
  .platform-body p,
  .lyrics-intro {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 12px;
  }

  .xp-button {
    width: 100%;
    min-height: 50px;
  }

  .space-stage {
    min-height: 410px;
    overflow: hidden;
    animation: none;
  }

  .portal-ring {
    top: 96px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(92vw, 360px);
    height: min(70vw, 275px);
    transform: translateX(-50%) rotateX(64deg) rotateZ(-12deg);
  }

  .planet-cd {
    top: 96px;
    left: 50%;
    z-index: 2;
    width: min(64vw, 238px);
    border-width: 8px;
    box-shadow: 10px 13px 0 #000, 0 0 48px rgba(54, 255, 226, 0.45);
    transform: translateX(-50%) rotateX(12deg) rotateY(-10deg);
    animation: none;
  }

  .planet-cd span {
    padding: 7px 10px;
    border-width: 2px;
    font-size: clamp(0.9rem, 5vw, 1.2rem);
  }

  .cd-hole {
    border-width: 5px;
  }

  .orbit {
    inset: auto;
    top: 215px;
    left: 50%;
    z-index: 3;
    width: min(88vw, 340px);
    height: min(62vw, 246px);
    border-width: 2px;
    transform: translate(-50%, -50%) rotate(-14deg);
    animation: none;
  }

  .orbit-two {
    width: min(72vw, 282px);
    height: min(50vw, 198px);
    transform: translate(-50%, -50%) rotate(18deg);
  }

  .orbit-three {
    width: min(96vw, 370px);
    height: min(70vw, 276px);
    transform: translate(-50%, -50%) rotate(-34deg);
  }

  .sticker {
    padding: 6px 9px;
    border-width: 2px;
    font-size: 0.82rem;
    box-shadow: 3px 3px 0 #000;
  }

  .sticker-a {
    top: 52%;
    left: 100%;
    transform: translate(-64%, -50%) rotate(7deg);
  }

  .sticker-b {
    top: 8%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(-11deg);
  }

  .sticker-c {
    top: 4%;
    left: 78%;
    transform: translate(-50%, 0) rotate(12deg);
  }

  .ticker div,
  .equalizer span {
    animation-duration: 20s;
  }

  .floating-window {
    width: min(78vw, 240px);
    box-shadow: 7px 8px 0 #000;
  }

  .now-window {
    top: 2%;
    left: 0;
  }

  .alert-window {
    right: 0;
    bottom: 2%;
  }

  .sounds-section,
  .about-section,
  .platforms-section,
  .lyrics-section,
  .faq-section,
  .contact-section,
  .zone-section {
    padding-right: max(14px, env(safe-area-inset-right, 0px));
    padding-left: max(14px, env(safe-area-inset-left, 0px));
  }

  .section-grid {
    gap: 24px;
  }

  .section-grid h2,
  .about-panel h2,
  .faq-section h2,
  .contact-body h2,
  .crt-screen h2,
  .platform-body h2,
  .lyrics-section h2 {
    font-size: clamp(2.25rem, 14vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-shadow: 3px 3px 0 var(--hot-pink), 6px 6px 0 #000;
  }

  .sound-stack {
    display: grid;
    gap: 14px;
  }

  .track-card,
  .track-card:nth-child(1),
  .track-card:nth-child(2),
  .track-card:nth-child(3),
  .track-card:nth-child(4),
  .track-card:nth-child(5) {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 7px 8px 0 #000;
    transform: none !important;
  }

  .song-embed {
    display: none;
  }

  .platform-window,
  .about-panel,
  .contact-card,
  .lyric-card {
    width: 100%;
    box-shadow: 8px 10px 0 #000;
  }

  .platform-body,
  .about-panel,
  .contact-body {
    padding: 22px;
  }

  .platform-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-grid a {
    min-height: 82px;
    border-radius: 14px;
  }

  .room {
    min-height: auto;
    overflow: visible;
    border-radius: 18px;
    box-shadow: 0 0 0 5px #000, inset 0 0 50px rgba(255, 42, 163, 0.22);
  }

  .room-plane,
  .poster-cloud {
    display: none;
  }

  .crt-window {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    box-shadow: 8px 10px 0 #000;
  }

  .crt-screen {
    margin: 12px;
    padding: 16px;
    border-width: 5px;
    border-radius: 20px;
  }

  .fan-lab {
    gap: 14px;
  }

  .game-cabinet,
  .whiteboard {
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 5px 6px 0 #000;
  }

  .character-picker button,
  .game-controls button,
  .note-form button {
    min-height: 48px;
  }

  .sticky-board {
    min-height: 280px;
  }

  .sticky-note {
    width: min(42vw, 136px);
    min-height: 92px;
  }

  .lyrics-grid {
    gap: 14px;
  }

  .xp-taskbar {
    min-height: 48px;
    padding-bottom: max(5px, env(safe-area-inset-bottom, 0px));
  }

  .start-button {
    min-height: 38px;
  }

  .task-items {
    scrollbar-width: none;
  }

  .task-items a {
    min-width: auto;
    min-height: 38px;
    flex: 0 0 auto;
    padding: 8px 10px;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100vw - 10px);
    padding: 6px;
  }

  .brand-badge {
    min-width: 74px;
  }

  .brand-badge span:first-child {
    font-size: 0.82rem;
  }

  .site-header nav a {
    padding-inline: 9px;
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 90px;
  }

  .chrome-title {
    font-size: clamp(5.35rem, 31vw, 7.4rem);
  }

  .space-stage {
    min-height: 390px;
  }

  .portal-ring {
    top: 94px;
    width: min(96vw, 338px);
    height: min(74vw, 252px);
  }

  .planet-cd {
    top: 102px;
    width: min(67vw, 220px);
  }

  .orbit {
    top: 212px;
    width: min(92vw, 322px);
    height: min(64vw, 224px);
  }

  .orbit-two {
    width: min(75vw, 260px);
    height: min(52vw, 182px);
  }

  .orbit-three {
    width: min(98vw, 348px);
    height: min(72vw, 252px);
  }

  .sticker {
    font-size: 0.74rem;
  }

  .floating-window {
    width: min(84vw, 220px);
  }

  .link-grid {
    gap: 10px;
  }

  .game-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xp-taskbar {
    grid-template-columns: auto minmax(0, 1fr);
  }
}
