:root {
  --wii-bg: #d8d8d8;
  --wii-panel: #ececec;
  --wii-ink: #3a3a3a;
  --wii-mute: #7a7a7a;
  --wii-blue: #59b4ff;
  --wii-blue-deep: #2f8fef;
  --wii-glow: rgba(72, 176, 255, 0.75);
  --cursor-black: #0a0a0a;
  --cursor-cream: #f4f4f4;
  --warn-fg: #f2f2f2;
  --radius-ch: 18px;
  --font-ui: "Nunito", system-ui, sans-serif;
  --font-display: "Figtree", system-ui, sans-serif;
  --font-memo: "Instrument Serif", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #111;
  color: var(--wii-ink);
  font-family: var(--font-ui);
  cursor: none;
  overflow: hidden;
}

button {
  font: inherit;
  cursor: none;
  border: 0;
  background: none;
  color: inherit;
}

.stage {
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.stage[data-scene="warning"],
.stage[data-scene="logo"] {
  background: #000;
}

.stage[data-scene="board"],
.stage[data-scene="menu"],
.stage[data-scene="channel"] {
  background:
    radial-gradient(120% 90% at 50% 35%, #f4f4f4 0%, #d0d0d0 55%, #b8b8b8 100%);
}

.crt {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 40;
}

.crt-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: multiply;
  opacity: 0.55;
  animation: drift 8s linear infinite;
}

.crt-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.45) 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.crt-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(0, 80, 120, 0.05));
  opacity: 0.8;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(3px);
  }
}

.scene {
  position: absolute;
  inset: 0;
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.stage[data-scene="warning"] .scene-warning,
.stage[data-scene="board"] .scene-board,
.stage[data-scene="menu"] .scene-menu,
.stage[data-scene="channel"] .scene-channel,
.stage[data-scene="logo"] .scene-logo {
  display: flex;
  opacity: 1;
}

/* Warning */
.scene-warning {
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warn-fg);
  padding: 2rem;
}

.warning-block {
  max-width: 42rem;
  animation: fade-up 0.7s ease both;
}

.warning-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.warning-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.warning-tri {
  width: 1.6rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding-top: 0.25rem;
}

.warning-body {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.1vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.warning-link {
  margin: 0 0 3.5rem;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.5;
}

.warning-link span {
  color: #fff;
}

.warning-prompt {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.a-btn {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  border: 2px solid #fff;
  font-size: 0.8rem;
  font-weight: 800;
  vertical-align: middle;
  margin: 0 0.15rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Message board */
.scene-board {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.trash-btn {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
}

.memo-card {
  width: min(560px, 88vw);
  background: #f7f4ec;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: fade-up 0.55s ease both;
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.memo-card:hover,
.memo-card:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(89, 180, 255, 0.55);
}

.memo-card header {
  background: #4d4d4d;
  color: #fff;
  text-align: center;
  padding: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.memo-lines {
  min-height: 280px;
  padding: 2rem 2.25rem;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 31px,
    rgba(0, 0, 0, 0.08) 31px,
    rgba(0, 0, 0, 0.08) 32px
  );
  font-family: var(--font-memo);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 32px;
  color: #1d1d1d;
}

.memo-lines p {
  margin: 0;
}

.memo-gap {
  height: 32px;
}

.board-chrome {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-mark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.35rem;
  color: rgba(0, 0, 0, 0.18);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pill-btn {
  min-width: 140px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(#f8f8f8, #dcdcdc);
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 3px rgba(120, 180, 220, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.12);
  color: #444;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pill-btn:hover,
.pill-btn:focus-visible {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 4px var(--wii-glow),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.pill-btn.wide {
  min-width: 180px;
  font-size: 1.15rem;
  padding: 0.85rem 1.8rem;
}

.pill-btn.primary {
  background: linear-gradient(#fff, #e8f3ff);
}

.circle-btn {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(#fafafa, #d8d8d8);
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 3px rgba(120, 180, 220, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.14);
  color: #4a4a4a;
  font-weight: 800;
  position: relative;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.circle-btn:hover,
.circle-btn:focus-visible {
  transform: scale(1.05);
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 4px var(--wii-glow),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

.badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #e33;
  color: #fff;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 0 0 2px #fff;
}

/* Menu */
.scene-menu {
  flex-direction: column;
  padding: 3.5vh 4vw 0;
}

.channel-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 18px);
  width: min(1100px, 92vw);
  margin: 0 auto;
  max-height: 68vh;
  align-content: center;
}

.channel {
  position: relative;
  border-radius: var(--radius-ch);
  background: linear-gradient(#f7f7f7, #e4e4e4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 0;
}

.channel.empty::before {
  content: "Wii";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.08);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
}

.channel.selected,
.channel:hover,
.channel:focus-visible {
  transform: scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 4px var(--wii-glow),
    0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.channel-label,
.channel-title {
  position: absolute;
  left: 0.7rem;
  bottom: 0.55rem;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.channel.disc .channel-label,
.channel.mii .channel-label,
.channel.photo .channel-label {
  color: #555;
  text-shadow: none;
}

.disc-ring {
  position: absolute;
  inset: 18% 22%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 12%, transparent 13%),
    conic-gradient(from 20deg, #bbb, #eee, #999, #ddd, #bbb);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mii {
  background: linear-gradient(#fff7e8, #f0e0c8);
}

.mii-crowd {
  position: absolute;
  inset: 12% 10% 28%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mii-crowd i {
  border-radius: 999px;
  background: #f2c9a0;
  position: relative;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.08);
}

.mii-crowd i:nth-child(2) {
  background: #e8b48a;
}
.mii-crowd i:nth-child(3) {
  background: #d9a070;
}
.mii-crowd i:nth-child(4) {
  background: #c98a62;
}
.mii-crowd i:nth-child(5) {
  background: #f0d0a8;
}
.mii-crowd i:nth-child(6) {
  background: #deb089;
}

.mii-crowd i::before,
.mii-crowd i::after {
  content: "";
  position: absolute;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: #333;
  top: 38%;
}
.mii-crowd i::before {
  left: 28%;
}
.mii-crowd i::after {
  right: 28%;
}

.photo {
  background:
    radial-gradient(circle at 30% 30%, #fff8, transparent 40%),
    linear-gradient(135deg, #c9a67a, #8d6a45);
}

.photo-frame {
  position: absolute;
  inset: 18% 22% 30%;
  background:
    linear-gradient(#fff, #eee) padding-box,
    linear-gradient(#8a5a2b, #5c3a18) border-box;
  border: 4px solid transparent;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 40% 40%, #ffe66d, #f0a33a 55%, #5b8c3e 56%);
  border-radius: 2px;
}

.forecast {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(180deg, #2a78d8, #0d3b7a);
}

.forecast::after {
  content: "☀";
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.news {
  background:
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(180deg, #3f9a45, #1f6b2a);
}

.news::after {
  content: "";
  position: absolute;
  inset: 16% 14% 34%;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 42%, rgba(255, 255, 255, 0.22) 43% 46%, transparent 47%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.2) 49% 51%, transparent 52%);
  opacity: 0.85;
}

.cursor-ch {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #f4f4f4;
}

.cursor-word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
}

.page-arrow {
  position: absolute;
  top: 42%;
  right: 1.5vw;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 22px solid rgba(70, 170, 255, 0.85);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hover-chip {
  position: absolute;
  left: 50%;
  bottom: calc(14vh + 12px);
  transform: translateX(-50%);
  background: #fff;
  color: #444;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 5;
}

.hover-chip.show {
  opacity: 1;
}

.menu-bar {
  height: 14vh;
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2vw 1.2vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(210, 210, 210, 0.95));
  border-top-left-radius: 40% 28px;
  border-top-right-radius: 40% 28px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.menu-left,
.menu-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-right {
  justify-content: flex-end;
}

.menu-center {
  text-align: center;
}

.clock {
  color: var(--wii-blue-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.date {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #555;
  letter-spacing: 0.02em;
}

.sd-chip {
  width: 28px;
  height: 36px;
  border-radius: 4px;
  background: linear-gradient(#5ec4c0, #2f8f8b);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* Channel preview */
.scene-channel {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3vh 2vw 2vh;
  gap: 2vh;
  background:
    linear-gradient(rgba(20, 20, 20, 0.25), rgba(20, 20, 20, 0.35)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #6a7a68, #3e4a3c 45%, #2a3228);
  background-size: cover, 180px, cover;
}

.desktop-stage {
  position: relative;
  width: min(1080px, 94vw);
  height: min(62vh, 520px);
  flex: 1;
  max-height: 62vh;
}

.desktop-window {
  position: absolute;
  inset: 0 8% 8% 0;
  background: #f7f7f5;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: fade-up 0.5s ease both;
}

.win-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.8rem;
  background: #efefed;
  border-bottom: 1px solid #ddd;
  font-size: 0.85rem;
}

.traffic {
  display: flex;
  gap: 0.35rem;
}

.traffic i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
.traffic i:nth-child(2) {
  background: #febc2e;
}
.traffic i:nth-child(3) {
  background: #28c840;
}

.desktop-body {
  flex: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1.1fr;
  min-height: 0;
}

.side-list {
  border-right: 1px solid #e5e5e5;
  padding: 0.75rem;
  overflow: auto;
  background: #fafaf8;
}

.side-h {
  margin: 0.6rem 0 0.35rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 800;
}

.side-item {
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.25rem;
}

.side-item span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
}

.side-item small {
  color: #888;
  font-size: 0.68rem;
}

.side-item.active {
  background: #ececff;
}

.diff {
  color: #2f8f3a !important;
  font-weight: 700;
}

.chat-pane {
  padding: 0.85rem;
  overflow: auto;
  border-right: 1px solid #e5e5e5;
}

.bubble {
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 0.55rem;
}

.bubble.user {
  background: #ececec;
}

.bubble.agent {
  background: #f4f7ff;
  border: 1px solid #dde5ff;
}

.agent-meta {
  font-size: 0.68rem;
  color: #888;
  margin: 0 0 0.45rem 0.2rem;
}

.preview-pane {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.browser-bar {
  font-size: 0.68rem;
  color: #777;
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.landing {
  padding: 1.1rem 1rem;
  font-family: var(--font-memo);
}

.landing h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.landing .intro {
  margin: 0 0 1rem;
  color: #333;
  outline: 2px solid #4f8cff;
  outline-offset: 3px;
  display: inline-block;
}

.cta-row {
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
}

.cta-row span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.cta-row span:last-child {
  background: transparent;
  color: #111;
  border: 1px solid #ccc;
}

.cli-win {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(340px, 42%);
  background: rgba(18, 18, 18, 0.92);
  color: #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: fade-up 0.65s ease 0.1s both;
}

.cli-win header {
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cli-win pre {
  margin: 0;
  padding: 0.7rem;
  font-size: 0.72rem;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.45;
}

.cli-win .dim {
  color: #8a8a8a;
}

.channel-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  padding-bottom: 1vh;
}

.side-arrow {
  position: absolute;
  top: 40%;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  opacity: 0.85;
}

.side-arrow.left {
  left: 1vw;
  border-right: 24px solid rgba(70, 170, 255, 0.85);
}

.side-arrow.right {
  right: 1vw;
  border-left: 24px solid rgba(70, 170, 255, 0.85);
}

/* Logo */
.scene-logo {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
  color: #f4f4f4;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: logo-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: 0.06em;
}

.logo-caption {
  color: #aaa;
  font-size: 1rem;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Pointer */
.pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 36px;
  height: 42px;
  transform: translate(-8px, -4px);
  pointer-events: none;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.35));
  transition: transform 0.05s linear;
  will-change: transform;
}

.pointer.pulse svg {
  animation: tip 0.35s ease;
}

@keyframes tip {
  50% {
    transform: scale(0.92);
  }
}

/* HUD */
.hud {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 45;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  opacity: 0.7;
}

.hud:hover {
  opacity: 1;
}

.hud-btn {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hud-btn[aria-pressed="true"] {
  background: rgba(47, 143, 239, 0.85);
}

.hud-hint {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0 0.25rem;
}

.stage[data-scene="warning"] .hud-hint,
.stage[data-scene="logo"] .hud-hint {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 760px) {
  .channel-grid {
    gap: 8px;
    max-height: 58vh;
  }

  .circle-btn {
    width: 54px;
    height: 54px;
  }

  .desktop-body {
    grid-template-columns: 1fr;
  }

  .preview-pane,
  .side-list {
    display: none;
  }

  .cli-win {
    display: none;
  }

  .desktop-window {
    inset: 0;
  }

  .pill-btn.wide {
    min-width: 130px;
    font-size: 1rem;
  }

  .pointer {
    display: none;
  }

  html,
  body,
  button {
    cursor: auto;
  }
}

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

  .crt-scanlines {
    animation: none;
  }
}
