/* ═══════════════════════════════════════════════
   妄想天使 (Virtual Idols) — 样式表
   绝区零 · 潮流街头机能风
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --black: #0a0a0a;
  --white: #f0f0f0;
  --neon-purple: #a855f7;
  --neon-pink: #ff44cc;
  --neon-blue: #00d4ff;
  --neon-yellow: #ffb020;
  --glass-bg: rgba(15, 15, 25, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Noto Sans SC', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #121218;
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   LOADING SCREEN — CRT TV
   ═══════════════════════════════════════════════ */

#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #050508;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.crt-container {
  position: relative;
  width: min(600px, 90vw);
  aspect-ratio: 4/3;
}

.crt-bezel {
  position: absolute; inset: -20px;
  border-radius: 30px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  box-shadow:
    0 0 0 4px #333,
    0 0 0 6px #111,
    inset 0 0 60px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.8);
  z-index: 0;
}

.crt-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a12;
  z-index: 1;
}

.crt-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  z-index: 10;
  pointer-events: none;
  animation: scanlineShift 8s linear infinite;
}

@keyframes scanlineShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

.crt-noise {
  position: absolute; inset: 0;
  z-index: 5;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: noiseShift 0.15s steps(5) infinite;
  pointer-events: none;
}

@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-5%, -5%); }
  40% { transform: translate(3%, -3%); }
  60% { transform: translate(-3%, 5%); }
  80% { transform: translate(5%, 2%); }
  100% { transform: translate(0, 0); }
}

.crt-content {
  position: relative;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 8;
  padding: 40px;
}

/* Loading Logo */
.loading-logo {
  text-align: center;
  margin-bottom: 50px;
}

.logo-glitch {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  position: relative;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
  animation: logoGlitch 3s infinite;
}

.logo-glitch::before,
.logo-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.logo-glitch::before {
  color: var(--neon-pink);
  animation: glitchBefore 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.logo-glitch::after {
  color: var(--neon-blue);
  animation: glitchAfter 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitchBefore {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, -1px); }
  94% { transform: translate(3px, 1px); }
  96% { transform: translate(-2px, 0); }
}

@keyframes glitchAfter {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, 1px); }
  93% { transform: translate(-3px, -1px); }
  95% { transform: translate(1px, 2px); }
}

@keyframes logoGlitch {
  0%, 90%, 100% { opacity: 1; }
  91% { opacity: 0.8; }
  93% { opacity: 1; }
  95% { opacity: 0.9; }
}

.logo-sub {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(0.6rem, 2vw, 0.9rem);
  letter-spacing: 0.5em;
  color: var(--neon-purple);
  margin-top: 10px;
  opacity: 0.7;
}

/* VHS Progress Bar */
.vhs-progress {
  width: 80%;
  max-width: 350px;
  margin-bottom: 20px;
}

.vhs-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.vhs-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-blue));
  border-radius: 3px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--neon-purple);
}

.vhs-label {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.vhs-rec {
  color: #ff3333;
  animation: recBlink 1s steps(1) infinite;
}

@keyframes recBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.loading-hint {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  animation: hintPulse 2s ease infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.5; }
}


/* ═══════════════════════════════════════════════
   MAIN APP
   ═══════════════════════════════════════════════ */

#app {
  position: fixed; inset: 0;
  overflow: hidden;
}

#bg-canvas {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}

.global-scanlines {
  position: fixed; inset: 0;
  z-index: 100;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 4px
  );
  opacity: 0.3;
}

/* ── Header ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, transparent 100%);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-divider {
  color: rgba(255,255,255,0.15);
  font-weight: 100;
}

.header-sub {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}

.header-right {
  font-family: var(--font-title);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}

/* ── 3D Container ── */
#three-container {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* ── Character Tags ── */
#char-tags {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 20px;
}

.char-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(15, 15, 25, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.char-tag:hover {
  background: rgba(15, 15, 25, 0.8);
  border-color: var(--tag-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.char-tag.active {
  background: rgba(15, 15, 25, 0.85);
  border-color: var(--tag-color);
  color: var(--white);
  box-shadow: 0 0 20px color-mix(in srgb, var(--tag-color) 25%, transparent);
}

.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tag-color);
  box-shadow: 0 0 8px var(--tag-color);
  transition: transform 0.3s;
}

.char-tag.active .tag-dot {
  transform: scale(1.3);
  animation: dotPulse 1.5s ease infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--tag-color); }
  50% { box-shadow: 0 0 16px var(--tag-color), 0 0 30px var(--tag-color); }
}

.tag-en {
  font-family: var(--font-title);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

/* ── Hero Text ── */
#hero-text {
  position: fixed;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-cn {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-en {
  font-family: var(--font-title);
  font-size: clamp(0.6rem, 1.5vw, 0.9rem);
  letter-spacing: 0.5em;
  color: var(--neon-purple);
  opacity: 0.6;
}

.hero-sub {
  margin-top: 15px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ── Nav Hint ── */
#nav-hint {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-family: var(--font-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.15);
  pointer-events: none;
}


/* ═══════════════════════════════════════════════
   CHARACTER DETAIL PANEL
   ═══════════════════════════════════════════════ */

.detail-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(480px, 90vw);
  height: 100%;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-panel.open {
  transform: translateX(0);
}

.detail-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 8, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
}

.detail-content {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  overflow-y: auto;
  z-index: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.detail-content::-webkit-scrollbar {
  width: 4px;
}

.detail-content::-webkit-scrollbar-track {
  background: transparent;
}

.detail-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.detail-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}

.detail-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--neon-pink);
  transform: rotate(90deg);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.detail-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.detail-name-cn {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.detail-name-en {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-bottom: 8px;
}

.detail-role {
  display: inline-block;
  padding: 3px 12px;
  font-size: 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-tag {
  padding: 4px 14px;
  font-size: 0.72rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  animation: tagFlicker 4s ease infinite;
}

.detail-tag:nth-child(2) { animation-delay: -1s; }
.detail-tag:nth-child(3) { animation-delay: -2s; }
.detail-tag:nth-child(4) { animation-delay: -3s; }

@keyframes tagFlicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.5; }
  97% { opacity: 1; }
  98% { opacity: 0.6; }
}

.detail-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  padding: 15px 20px;
  margin-bottom: 20px;
  border-left: 2px solid var(--neon-purple);
  background: rgba(168, 85, 247, 0.03);
}

.detail-bio {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 25px;
}

/* Stats */
.stats-title {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 15px;
}

.stats-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  width: 45px;
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}

.stat-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px currentColor;
}

.stat-value {
  font-family: var(--font-title);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  width: 25px;
  text-align: right;
}

/* Cheer Button */
.detail-cheer {
  text-align: center;
  padding: 10px 0 30px;
}

.cheer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  border: none;
  border-radius: 30px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.cheer-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
}

.cheer-btn:active {
  transform: translateY(0) scale(0.98);
}

.cheer-icon {
  font-size: 1.1rem;
}

/* Cheer animation on cards */
@keyframes cheerBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(-3deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
}

.cheering {
  animation: cheerBounce 0.8s ease infinite;
}


/* ═══════════════════════════════════════════════
   MUSIC PLAYER — Walkman
   ═══════════════════════════════════════════════ */

.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
}

.walkman-body {
  background: linear-gradient(145deg, #1e1e2e, #15151f);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 220px;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.walkman-screen {
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.03);
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 25px;
  margin-bottom: 6px;
}

.eq-bars span {
  flex: 1;
  background: linear-gradient(0deg, var(--neon-purple), var(--neon-pink));
  border-radius: 1px;
  min-height: 2px;
  transition: height 0.1s ease;
}

.eq-bars.playing span {
  animation: eqBounce 0.6s ease infinite alternate;
}

.eq-bars.playing span:nth-child(1) { animation-delay: 0s; }
.eq-bars.playing span:nth-child(2) { animation-delay: 0.05s; }
.eq-bars.playing span:nth-child(3) { animation-delay: 0.1s; }
.eq-bars.playing span:nth-child(4) { animation-delay: 0.15s; }
.eq-bars.playing span:nth-child(5) { animation-delay: 0.2s; }
.eq-bars.playing span:nth-child(6) { animation-delay: 0.25s; }
.eq-bars.playing span:nth-child(7) { animation-delay: 0.12s; }
.eq-bars.playing span:nth-child(8) { animation-delay: 0.08s; }
.eq-bars.playing span:nth-child(9) { animation-delay: 0.18s; }
.eq-bars.playing span:nth-child(10) { animation-delay: 0.22s; }

@keyframes eqBounce {
  0% { height: 3px; }
  100% { height: 22px; }
}

.walkman-title {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.walkman-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.walkman-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.walkman-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.walkman-play {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  border-color: transparent;
  color: var(--white);
  font-size: 0.85rem;
}

.walkman-play:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.walkman-vol {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vol-icon {
  font-size: 0.7rem;
  opacity: 0.4;
}

.vol-slider {
  flex: 1;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  outline: none;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  background: var(--neon-purple);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px var(--neon-purple);
}

.vol-slider::-moz-range-thumb {
  width: 12px; height: 12px;
  background: var(--neon-purple);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px var(--neon-purple);
}


/* ═══════════════════════════════════════════════
   GLITCH OVERLAY
   ═══════════════════════════════════════════════ */

.glitch-overlay {
  position: fixed; inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.05s;
}

.glitch-overlay.active {
  opacity: 1;
  animation: glitchFlash 0.3s steps(2) forwards;
}

@keyframes glitchFlash {
  0% {
    background: transparent;
    clip-path: inset(0);
  }
  10% {
    background: rgba(255, 0, 100, 0.05);
    clip-path: inset(20% 0 60% 0);
  }
  20% {
    background: rgba(0, 200, 255, 0.04);
    clip-path: inset(50% 0 10% 0);
  }
  30% {
    background: rgba(0, 0, 0, 0.8);
    clip-path: inset(0);
  }
  40% {
    background: transparent;
    clip-path: inset(10% 0 70% 0);
  }
  50% {
    background: rgba(168, 85, 247, 0.06);
    clip-path: inset(40% 0 20% 0);
  }
  60%, 100% {
    background: transparent;
    clip-path: inset(0);
  }
}

.glitch-hint {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 45;
  font-family: var(--font-title);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s;
}

.glitch-hint.show {
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  #hero-text {
    left: 20px;
    top: auto;
    bottom: 180px;
    transform: none;
  }

  .hero-cn { font-size: 1.5rem; }
  .hero-sub { display: none; }

  #char-tags {
    bottom: 160px;
    gap: 10px;
  }

  .char-tag {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .tag-en { display: none; }

  .detail-panel {
    width: 100vw;
    top: auto;
    bottom: 0;
    right: 0;
    height: 70vh;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
  }

  .detail-panel.open {
    transform: translateY(0);
  }

  .walkman-body {
    min-width: 180px;
    padding: 10px 14px;
  }

  #nav-hint { display: none; }

  .glitch-hint { display: none; }
}

@media (max-width: 480px) {
  #char-tags {
    flex-direction: column;
    align-items: center;
    bottom: 140px;
  }
}
