/* ============================================================
   EUNICE OS — retro handheld console theme (pastel blue × pink)
   inspired by chunky-console / retro-OS sites: the whole page is
   a device, content lives on its screen as OS windows.
   ============================================================ */
:root {
  /* space backdrop */
  --space-1: #2b1b4e;
  --space-2: #45256b;
  /* console shell */
  --shell: #8fd6e0;
  --shell-dark: #5fb6c9;
  --shell-light: #c0ecf2;
  /* screen */
  --screen-pink: #f9cdec;
  --screen-pink-deep: #f5b3e0;
  /* chrome */
  --cream: #fdf6ec;
  --ink: #2d2a3a;
  --blue: #3fa7d6;
  --blue-deep: #2c7fb0;
  --pink: #f361b2;
  --pink-deep: #d63d92;
  --gold: #f5c542;
  --tapioca: #8a5a2b;
  --tapioca-dark: #3a2412;

  --font-pixel: 'Press Start 2P', monospace;
  --font-body: 'VT323', monospace;

  /* chunky pixel hand cursor */
  --cursor-hand: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><path d="M10 1h4v12h2V5h4v8h2v-4h4v10l-3 8H9l-5-9 3-3 3 3V1z" fill="white" stroke="%232d2a3a" stroke-width="2"/></svg>') 12 2, pointer;
  --cursor-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 1l16 12h-9l-3 9L3 1z" fill="white" stroke="%232d2a3a" stroke-width="2"/></svg>') 3 1, default;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--space-1) 0%, var(--space-2) 55%, #6b2a5e 100%);
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink);
  cursor: var(--cursor-arrow);
  padding: 3vh 2vw 6vh;
  overflow-x: hidden;
}

a, button, select, .d-icon { cursor: var(--cursor-hand); }

::selection { background: var(--pink); color: var(--cream); }

/* ---------- starfield ---------- */
.stars {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 12% 18%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 78% 12%, #ffd6f2 50%, transparent 51%),
    radial-gradient(3px 3px at 33% 72%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 64% 48%, #a8e6ff 50%, transparent 51%),
    radial-gradient(2px 2px at 90% 75%, #fff 50%, transparent 51%),
    radial-gradient(3px 3px at 8% 55%, #ffd6f2 50%, transparent 51%),
    radial-gradient(2px 2px at 45% 28%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 25% 90%, #a8e6ff 50%, transparent 51%),
    radial-gradient(2px 2px at 55% 88%, #fff 50%, transparent 51%),
    radial-gradient(3px 3px at 85% 35%, #fff 50%, transparent 51%);
  animation: twinkle 3.2s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }

.blink { animation: blink 1.1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }
.cursor-blink { animation: blink 0.9s steps(2, start) infinite; }

/* ============================================================
   THE CONSOLE
   ============================================================ */
.device {
  position: relative; z-index: 1;
  max-width: 1060px; margin: 0 auto;
  background: linear-gradient(175deg, var(--shell-light) 0%, var(--shell) 30%, var(--shell) 80%, var(--shell-dark) 100%);
  border: 4px solid var(--ink);
  border-radius: 42px;
  padding: 1.1rem 1.6rem 0.8rem;
  box-shadow:
    inset 0 4px 0 rgba(255, 255, 255, 0.55),
    inset 0 -6px 0 rgba(31, 77, 92, 0.35),
    0 24px 60px rgba(10, 5, 30, 0.6);
}

.device-top {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.35rem 0 0.75rem;
}
.device-label {
  font-family: var(--font-pixel); font-size: 0.55rem; color: #23606f;
  letter-spacing: 1px;
}
.device-led {
  width: 12px; height: 12px; border-radius: 50%;
  background: #59e0a8; border: 2px solid var(--ink);
  animation: blink 2.4s steps(2) infinite;
}
.device-led.pink-led { background: var(--pink); animation-duration: 1.7s; }

/* ---------- screen ---------- */
.screen {
  position: relative;
  background: var(--screen-pink);
  border: 4px solid var(--ink);
  border-radius: 22px;
  height: min(78vh, 820px);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  box-shadow: inset 0 0 0 6px var(--cream), inset 0 10px 30px rgba(150, 60, 120, 0.25);
}
/* retro OS scrollbar */
.screen::-webkit-scrollbar { width: 18px; }
.screen::-webkit-scrollbar-track { background: var(--cream); border-left: 3px solid var(--ink); }
.screen::-webkit-scrollbar-thumb {
  background: var(--pink); border: 3px solid var(--ink); border-radius: 0;
}

/* ---------- menu bar ---------- */
.menubar {
  position: sticky; top: 6px; z-index: 50;
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  margin: 6px 6px 0; border-radius: 14px 14px 0 0;
  padding: 0.7rem 1.1rem;
}
.menubar-box { font-size: 1rem; color: var(--ink); }
.menubar-links {
  display: flex; gap: 1.3rem; list-style: none; flex: 1; flex-wrap: wrap;
}
.menubar-links a {
  font-family: var(--font-pixel); font-size: 0.58rem;
  color: var(--ink); text-decoration: none;
}
.menubar-links a:hover { color: var(--pink-deep); }
.menubar-contact {
  font-family: var(--font-pixel); font-size: 0.58rem;
  color: var(--cream); text-decoration: none;
  background: var(--pink); border: 3px solid var(--ink); border-radius: 8px;
  padding: 0.45rem 0.7rem;
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 0.08s, box-shadow 0.08s;
}
.menubar-contact:hover { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }

/* ---------- desktop hero ---------- */
.desktop-hero {
  text-align: center; padding: 3.2rem 1.5rem 2.6rem; position: relative;
}
.hero-title {
  font-family: var(--font-pixel);
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  color: var(--blue-deep);
  text-shadow:
    -3px -3px 0 var(--cream), 3px -3px 0 var(--cream),
    -3px 3px 0 var(--cream), 3px 3px 0 var(--cream),
    6px 6px 0 var(--pink);
  margin: 1.4rem 0 1.1rem;
  letter-spacing: 2px;
}
.hero-sub {
  font-family: var(--font-pixel); font-size: clamp(0.5rem, 1.8vw, 0.72rem);
  color: var(--ink); line-height: 2; margin-bottom: 0.9rem;
}
.hero-boot { font-size: 1.4rem; color: var(--pink-deep); margin-bottom: 2.4rem; }

/* kawaii boba mascot */
.boba-mascot {
  position: relative; width: 150px; height: 190px; margin: 0 auto;
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.mascot-straw {
  position: absolute; left: 84px; top: -22px; width: 18px; height: 72px;
  background: var(--pink); border: 3px solid var(--ink); border-radius: 4px;
  transform: rotate(10deg); z-index: 3;
}
.mascot-lid {
  position: absolute; top: 30px; left: 8px; width: 134px; height: 16px;
  background: var(--blue); border: 3px solid var(--ink); border-radius: 8px; z-index: 2;
}
.mascot-cup {
  position: absolute; top: 42px; left: 16px; width: 118px; height: 132px;
  background: #fde7f5;
  border: 3px solid var(--ink);
  border-radius: 6px 6px 22px 22px;
  overflow: hidden;
}
.mascot-tea {
  position: absolute; bottom: 0; width: 100%; height: 72%;
  background: #e0b07c;
  border-top: 3px solid var(--ink);
}
.mascot-pearl {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: var(--tapioca); border: 3px solid var(--tapioca-dark); bottom: 6px;
}
.mascot-pearl.mp1 { left: 10px; } .mascot-pearl.mp2 { left: 38px; bottom: 22px; }
.mascot-pearl.mp3 { left: 64px; } .mascot-pearl.mp4 { left: 88px; bottom: 20px; }
.mascot-face {
  position: absolute; top: 46%; width: 100%; z-index: 2; text-align: center;
}
.mascot-eyes { display: flex; justify-content: center; gap: 26px; margin-bottom: 7px; }
.mascot-eyes i {
  width: 12px; height: 12px; background: var(--ink); border-radius: 50%;
  animation: blink-eyes 4.5s steps(1) infinite;
}
@keyframes blink-eyes {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 98% { transform: scaleY(0.1); }
}
.mascot-mouth {
  display: inline-block; width: 22px; height: 11px;
  border: 3px solid var(--ink); border-top: none;
  border-radius: 0 0 22px 22px; background: var(--pink);
}
.mascot-arm {
  position: absolute; width: 14px; height: 44px;
  border: 3px solid var(--ink); background: #fde7f5; border-radius: 10px;
  top: 95px; z-index: 1;
}
.mascot-arm.left { left: 0; transform: rotate(28deg); }
.mascot-arm.right { right: 0; transform: rotate(-28deg); }

/* desktop icons */
.desktop-icons {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.6rem 2.2rem; max-width: 720px; margin: 0 auto;
}
.d-icon {
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 1.25rem;
  color: var(--ink); text-decoration: none; width: 110px;
}
.d-icon-art {
  display: grid; place-items: center;
  width: 64px; height: 64px; font-size: 1.9rem;
  background: var(--cream); border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 0.1s steps(2), box-shadow 0.1s;
}
.d-icon:hover .d-icon-art {
  transform: translateY(-4px); box-shadow: 0 8px 0 var(--ink);
  background: #cdeffa;
}
.d-icon:hover { color: var(--blue-deep); }
.d-icon-game .d-icon-art { background: #ffd6ef; }
.hero-warning {
  margin-top: 2.4rem; font-family: var(--font-pixel); font-size: 0.5rem;
  color: #c43030; opacity: 0.85;
}

/* ============================================================
   WINDOWS
   ============================================================ */
.window {
  max-width: 860px;
  margin: 0 auto 3.4rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 6px 8px 0 rgba(45, 42, 58, 0.35);
  overflow: hidden;
}
.window:nth-of-type(odd) { transform: rotate(-0.4deg); }
.window:nth-of-type(even) { transform: rotate(0.35deg); }

.window-titlebar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--blue);
  border-bottom: 3px solid var(--ink);
  padding: 0.65rem 1.1rem;
}
.window-titlebar.pink-bar { background: var(--pink); }
.window-titlebar.game-bar { background: var(--ink); }
.window-title {
  font-family: var(--font-pixel); font-size: clamp(0.55rem, 2vw, 0.75rem);
  color: var(--cream); letter-spacing: 1px;
}
.window-btns { display: flex; gap: 0.5rem; }
.window-btns i {
  font-style: normal; display: grid; place-items: center;
  width: 22px; height: 22px; font-size: 0.7rem;
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 6px;
}
.window-body { padding: 1.8rem 2rem; }
.window-sub {
  font-family: var(--font-pixel); font-size: 0.55rem; line-height: 1.9;
  text-align: center; color: var(--pink-deep); margin-bottom: 1.8rem;
}

/* ---------- about ---------- */
.about-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
.typed-line { color: var(--blue-deep); font-size: 1.5rem; margin-bottom: 0.9rem; }
.about-text p { font-size: 1.45rem; margin-bottom: 1rem; }
.about-text b { color: var(--pink-deep); }
.handles-line { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.handles-line a {
  color: var(--blue-deep); text-decoration: none;
  border-bottom: 3px dotted var(--blue);
}
.handles-line a:hover { color: var(--pink-deep); border-color: var(--pink); }
.moves-files {
  background: #fff; border: 3px solid var(--ink); border-radius: 10px;
  padding: 1.1rem 1.3rem;
}
.files-label {
  font-family: var(--font-pixel); font-size: 0.55rem; margin-bottom: 0.9rem;
  color: var(--blue-deep);
}
.file-list { list-style: none; }
.file-list li {
  padding: 0.28rem 0; font-size: 1.3rem; border-bottom: 2px dotted #d8cfc2;
}
.file-list li:last-child { border-bottom: none; }
.file-list i { font-style: normal; color: var(--pink); margin-right: 0.5rem; }
.file-list li:hover { background: #ffeaf7; }

/* ---------- stats ---------- */
.scoreboard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.score-card {
  text-align: center; padding: 1.3rem 0.6rem;
  background: #fff; border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: 0 4px 0 var(--ink);
}
.score-icon { font-size: 1.7rem; margin-bottom: 0.5rem; }
.score-num {
  font-family: var(--font-pixel); font-size: 1.25rem; color: var(--pink-deep);
  margin-bottom: 0.6rem;
}
.score-label { font-family: var(--font-pixel); font-size: 0.48rem; color: var(--blue-deep); }
.stats-note {
  text-align: center; margin-top: 1.6rem;
  font-family: var(--font-pixel); font-size: 0.5rem; line-height: 2; color: var(--ink);
  opacity: 0.8;
}

/* ---------- work ---------- */
.levels { display: grid; gap: 1.4rem; }
.level-card {
  background: #fff; border: 3px solid var(--ink); border-radius: 12px;
  padding: 1.3rem 1.6rem;
  transition: transform 0.1s steps(2), box-shadow 0.1s;
}
.level-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.level-tag {
  display: inline-block; font-family: var(--font-pixel); font-size: 0.5rem;
  background: var(--blue); color: var(--cream);
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 0.4rem 0.6rem; margin-bottom: 0.8rem;
}
.level-tag.pink-tag { background: var(--pink); }
.level-card h3 { font-family: var(--font-pixel); font-size: 0.8rem; margin-bottom: 0.45rem; }
.level-org { color: var(--blue-deep); font-size: 1.3rem; margin-bottom: 0.5rem; }
.level-loot {
  margin-top: 0.7rem; padding-top: 0.55rem; color: var(--pink-deep);
  border-top: 2px dotted #e3b9d4; font-size: 1.25rem;
}

/* ---------- sponsors ---------- */
.sponsor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.sponsor-card {
  text-align: center; padding: 1.3rem 1rem;
  background: #fff; border: 3px solid var(--ink); border-radius: 12px;
  transition: transform 0.1s steps(2), box-shadow 0.1s;
}
.sponsor-card:hover { transform: translateY(-4px); box-shadow: 0 6px 0 var(--ink); }
.sponsor-logo { font-size: 2rem; margin-bottom: 0.5rem; }
.sponsor-card h3 { font-family: var(--font-pixel); font-size: 0.62rem; margin-bottom: 0.7rem; }
.sponsor-type {
  display: inline-block; font-family: var(--font-pixel); font-size: 0.42rem;
  background: var(--blue); color: var(--cream);
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 0.35rem 0.5rem; margin-bottom: 0.7rem;
}
.sponsor-type.pink-type { background: var(--pink); }
.sponsor-card p:last-child { font-size: 1.2rem; }
.mock-note {
  text-align: center; margin-top: 1.7rem;
  font-family: var(--font-pixel); font-size: 0.48rem; color: var(--pink-deep);
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-pixel); font-size: 0.7rem;
  background: var(--pink); color: var(--cream);
  border: 3px solid var(--ink); border-radius: 10px;
  padding: 0.95rem 1.5rem;
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.08s, box-shadow 0.08s;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); filter: brightness(1.06); }
.btn:active { transform: translateY(5px); box-shadow: 0 0 0 var(--ink); }
.btn-wide { width: 100%; margin-top: 1.1rem; }

/* ---------- game window ---------- */
.window-game { max-width: 860px; }
.game-hud {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1.3rem;
  background: var(--cream); border-bottom: 3px solid var(--ink);
  font-family: var(--font-pixel); font-size: 0.62rem;
}
.game-hud b { color: var(--pink-deep); }
.hud-mid { color: var(--pink-deep); }
.game-frame { position: relative; background: var(--screen-pink-deep); }
#game-canvas {
  display: block; width: 100%; height: auto;
  cursor: none; touch-action: none;
}
.game-overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; text-align: center;
  background: rgba(249, 205, 236, 0.92);
  padding: 1rem;
}
.game-overlay.hidden { display: none; }
.overlay-title {
  font-family: var(--font-pixel); font-size: clamp(1rem, 4vw, 1.7rem);
  color: var(--pink-deep);
  text-shadow: -2px -2px 0 var(--cream), 2px -2px 0 var(--cream),
               -2px 2px 0 var(--cream), 2px 2px 0 var(--cream),
               4px 4px 0 var(--blue);
}
.overlay-text {
  font-family: var(--font-pixel); font-size: 0.58rem; line-height: 2.2; color: var(--ink);
}
.game-footnote {
  text-align: center; font-family: var(--font-pixel); font-size: 0.5rem;
  padding: 0.7rem; background: var(--cream); border-top: 3px solid var(--ink);
}

/* ---------- contact ---------- */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-form label {
  display: block; font-family: var(--font-pixel); font-size: 0.52rem;
  color: var(--blue-deep); margin-bottom: 1.15rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 0.5rem;
  background: #fff; color: var(--ink);
  border: 3px solid var(--ink); border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body); font-size: 1.3rem;
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(243, 97, 178, 0.35);
}
.form-status {
  margin-top: 1.1rem; text-align: center;
  font-family: var(--font-pixel); font-size: 0.55rem; line-height: 1.9;
  min-height: 1.3rem;
}
.form-status.ok { color: #1c8a5e; }
.form-status.err { color: #c43030; }

/* ---------- screen footer ---------- */
.screen-footer {
  text-align: center; padding: 1.5rem 1.5rem 2.6rem; position: relative;
}
.trash {
  position: absolute; right: 2rem; top: -1.4rem; font-size: 2.4rem;
  filter: drop-shadow(2px 3px 0 rgba(45, 42, 58, 0.4));
}
.footer-handles { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.9rem; }
.footer-handles a {
  font-family: var(--font-pixel); font-size: 0.55rem;
  color: var(--blue-deep); text-decoration: none;
}
.footer-handles a:hover { color: var(--pink-deep); }
.footer-credit { font-size: 1.25rem; opacity: 0.8; margin-bottom: 0.5rem; }
.footer-shutdown { font-family: var(--font-pixel); font-size: 0.5rem; color: var(--pink-deep); }

/* ============================================================
   CONSOLE CONTROLS (below screen)
   ============================================================ */
.device-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem 0.6rem;
}
.dpad { position: relative; width: 86px; height: 86px; }
.dpad-v, .dpad-h {
  position: absolute; background: var(--ink); border-radius: 8px;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.18), 0 3px 0 rgba(31, 77, 92, 0.5);
}
.dpad-v { left: 29px; top: 0; width: 28px; height: 86px; }
.dpad-h { top: 29px; left: 0; width: 86px; height: 28px; }
.speaker { display: grid; grid-template-columns: repeat(3, 12px); gap: 9px; }
.speaker i {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--shell-dark);
  box-shadow: inset 0 2px 2px rgba(31, 77, 92, 0.6);
}
.ab-buttons { display: flex; gap: 1.1rem; align-items: flex-end; }
.ab-btn {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  font-family: var(--font-pixel); font-size: 0.7rem; color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  user-select: none;
}
.a-btn { background: var(--pink); }
.b-btn { background: var(--blue); margin-bottom: 14px; }
.device-engraving {
  text-align: center; font-family: var(--font-pixel); font-size: 0.5rem;
  color: #2d7286; padding: 0.5rem 0 0.7rem; letter-spacing: 3px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.5s, transform 0.5s; }
.window:nth-of-type(odd).reveal.visible { opacity: 1; transform: rotate(-0.4deg); }
.window:nth-of-type(even).reveal.visible { opacity: 1; transform: rotate(0.35deg); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  body { padding: 1.2vh 1.5vw 3vh; }
  .device { border-radius: 28px; padding: 0.8rem 0.8rem 0.5rem; }
  .screen { height: 84vh; }
  .scoreboard { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .about-body { grid-template-columns: 1fr; }
  .device-controls { padding: 0.9rem 1.4rem 0.4rem; }
  .dpad { transform: scale(0.75); }
}
@media (max-width: 600px) {
  body { font-size: 1.2rem; padding: 0; }
  .device { border-radius: 0; border-left: none; border-right: none; }
  .menubar { gap: 0.7rem; padding: 0.6rem 0.7rem; }
  .menubar-links { gap: 0.7rem; }
  .menubar-links a, .menubar-contact { font-size: 0.48rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .window-body { padding: 1.3rem 1.1rem; }
  .desktop-icons { gap: 1rem 1.1rem; }
  .d-icon { width: 88px; font-size: 1.05rem; }
  .d-icon-art { width: 54px; height: 54px; }
  .speaker { display: none; }
}
