:root {
  --bg: #0B0A08;
  --bezel: #1C1712;
  --bezel-hi: #241E17;
  --screen: #060805;
  --fg: #EDE6D8;
  --muted: #8A8272;
  --muted-dim: #5c5648;
  --amber: #FFB454;
  --amber-dim: #B87F35;
  --cyan: #5FE1D6;
  --cyan-dim: #3B958C;
  --red: #FF5C4D;
  --line: rgba(237, 230, 216, .09);
  --player-h: 100px;
  --glow: 0.4;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(ellipse 90% 50% at 50% 0%, #171310 0%, var(--bg) 60%);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--player-h) + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

::selection {
  background: var(--amber);
  color: #1a1208;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.disp {
  font-family: 'Space Grotesk', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .02em;
}

.brand-glyph {
  width: 26px;
  height: 26px;
  flex: none;
}

.navlinks {
  display: flex;
  gap: 30px;
  font-size: 13.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.navlinks a {
  position: relative;
  padding-bottom: 4px;
  transition: color .25s;
}

.navlinks a:hover {
  color: var(--fg);
}

.navlinks a.active {
  color: var(--amber);
}

.navlinks a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
}

.nav-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted-dim);
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nav-status .sd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-dim);
}

.nav-status.ok .sd {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2.4s ease-in-out infinite;
}

.nav-status.err .sd {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 14px 48px 20px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--cyan);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  max-width: 640px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: #1a1208;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 rgba(255, 180, 84, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 180, 84, .28);
}

.btn-primary:active {
  transform: translateY(0) scale(.98);
}

.btn-ghost {
  color: var(--muted);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 13px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bezel);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .2s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--muted-dim);
}

.btn-ghost.on {
  color: var(--cyan);
  border-color: var(--cyan-dim);
}

/* ---------- CONSOLE (signature) ---------- */
.console-wrap {
  display: flex;
  gap: 22px;
  align-items: stretch;
  margin-top: 8px;
}

.bezel {
  position: relative;
  flex: 1;
  min-width: 0;
  background: linear-gradient(160deg, var(--bezel-hi), var(--bezel) 55%);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.rivet {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d0a07;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .6), 0 1px 0 rgba(255, 255, 255, .06);
}

.rivet.tl { top: 10px; left: 10px; }
.rivet.tr { top: 10px; right: 10px; }
.rivet.bl { bottom: 10px; left: 10px; }
.rivet.br { bottom: 10px; right: 10px; }

.console-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
  flex-wrap: wrap;
  gap: 10px;
}

.mode-tabs {
  display: flex;
  gap: 6px;
}

.mode-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 0, 0, .25);
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: .18s;
}

.mode-tab:hover {
  color: var(--fg);
}

.mode-tab.active {
  color: #1a1208;
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 14px rgba(255, 180, 84, .35);
}

.console-readout {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-dim);
}

.rec-dot.live {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: blink 1.1s ease-in-out infinite;
}

.screen {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--screen);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), inset 0 40px 70px rgba(0, 0, 0, .6), inset 0 -20px 50px rgba(0, 0, 0, .5);
  height: 300px;
}

.screen canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.screen::before { /* scanlines */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, .22) 3px);
  mix-blend-mode: multiply;
}

.screen::after { /* vignette */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .75);
  border-radius: 12px;
}

.sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  top: -70px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 180, 84, 0) 0%, rgba(255, 180, 84, .05) 50%, rgba(255, 180, 84, 0) 100%);
  animation: sweep 5s linear infinite;
}

@keyframes sweep {
  from { transform: translateY(0); }
  to { transform: translateY(370px); }
}

.boot-flash {
  position: absolute;
  inset: 0;
  background: var(--fg);
  z-index: 3;
  pointer-events: none;
  animation: boot .9s ease-out forwards;
}

@keyframes boot {
  0% { opacity: .85; }
  100% { opacity: 0; }
}

.dials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  flex: none;
}

.dial-box {
  width: 120px;
  background: linear-gradient(160deg, var(--bezel-hi), var(--bezel));
  border-radius: 14px;
  padding: 14px 10px 10px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .05);
  text-align: center;
  position: relative;
}

.dial {
  width: 80px;
  height: 52px;
  margin: 0 auto 8px;
  position: relative;
  overflow: hidden;
}

.dial svg {
  position: absolute;
  inset: 0;
}

.needle {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 2px;
  height: 44px;
  background: var(--amber);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-55deg);
  box-shadow: 0 0 6px var(--amber);
  transition: transform .09s linear;
}

.dial-box.treble .needle {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.dial-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--muted-dim);
  text-transform: uppercase;
}

/* ---------- SECTIONS ---------- */
section.block {
  padding: 34px 48px 10px;
}

.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.block-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 23px;
  margin: 0;
}

.block-head a {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.block-head a:hover {
  color: var(--amber);
}

.cards-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cards-row::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 180px;
  cursor: pointer;
  transition: transform .22s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-art {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .06);
}

.card-art .card-eq {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
  opacity: 0;
  transition: opacity .2s;
}

.card:hover .card-eq {
  opacity: 1;
}

.card-eq span {
  width: 3px;
  height: 20px;
  background: var(--fg);
  border-radius: 1px;
  animation: cardeq 1s ease-in-out infinite;
  transform-origin: bottom;
}

.card-eq span:nth-child(2) { animation-delay: .2s; }
.card-eq span:nth-child(3) { animation-delay: .4s; }
.card-eq span:nth-child(4) { animation-delay: .1s; }

@keyframes cardeq {
  0%, 100% { transform: scaleY(0.2); }
  50% { transform: scaleY(1); }
}

.card-play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: .2s;
}

.card:hover .card-play,
.card:active .card-play {
  opacity: 1;
  transform: translateY(0);
}

.card-title {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 600;
}

.card-sub {
  font-size: 12px;
  color: var(--muted-dim);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- QUEUE (rack strip) ---------- */
.queue-list {
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.track-row {
  display: grid;
  grid-template-columns: 30px 1fr 150px 60px 90px 40px;
  align-items: center;
  gap: 16px;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  border-radius: 8px;
  transition: background .18s;
}

.track-row:hover {
  background: rgba(255, 255, 255, .03);
}

.track-row.active {
  background: rgba(255, 180, 84, .07);
}

.track-row.active .t-title {
  color: var(--amber);
}

.idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--muted-dim);
  text-align: center;
}

.eq {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 13px;
  justify-content: center;
}

.eq span {
  width: 2.5px;
  height: 13px;
  background: var(--amber);
  border-radius: 1px;
  animation: eqbar .9s ease-in-out infinite;
  transform-origin: bottom;
}

.eq span:nth-child(2) { animation-delay: .15s; }
.eq span:nth-child(3) { animation-delay: .3s; }

@keyframes eqbar {
  0%, 100% { transform: scaleY(0.23); }
  50% { transform: scaleY(1); }
}

.t-main {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.t-thumb {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  flex: none;
  object-fit: cover;
  background: var(--bezel);
}

.t-thumb-wrap {
  position: relative;
  display: flex;
  flex: none;
}

.t-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  pointer-events: none;
}

.t-info {
  min-width: 0;
}

.t-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-artist {
  font-size: 12px;
  color: var(--muted-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-album {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'JetBrains Mono', monospace;
}

.t-level {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 12px;
}

.t-level span {
  width: 3px;
  height: 100%;
  background: var(--line);
  border-radius: 1px;
}

.t-level span.lit {
  background: var(--cyan-dim);
}

.t-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted-dim);
  text-align: right;
}

.t-like {
  color: var(--muted-dim);
  display: flex;
  justify-content: center;
  padding: 8px;
  margin: -8px;
}

.t-like:hover {
  color: var(--red);
}

.t-like.liked {
  color: var(--red);
}

.empty-state {
  padding: 40px 10px;
  text-align: center;
  color: var(--muted-dim);
  font-size: 13.5px;
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- PLAYER (control panel) ---------- */
.player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(28, 23, 18, .94);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 250px 1fr 260px;
  align-items: center;
  padding: 12px 24px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 20px;
  min-height: var(--player-h);
}

.p-track {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.p-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
  object-fit: cover;
  background: var(--bezel);
  border: 1px solid rgba(255, 255, 255, .06);
}

.p-info {
  min-width: 0;
}

.p-title {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.p-artist {
  font-size: 11.5px;
  color: var(--muted-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  font-family: 'JetBrains Mono', monospace;
}

.p-like {
  margin-left: 2px;
  color: var(--muted-dim);
  cursor: pointer;
  flex: none;
  padding: 8px;
}

.p-like.liked {
  color: var(--red);
}

.p-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.p-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ctrl-btn {
  background: rgba(0, 0, 0, .2);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  padding: 8px;
  border-radius: 7px;
  transition: .18s;
  position: relative;
}

.ctrl-btn:hover {
  color: var(--fg);
  border-color: var(--muted-dim);
}

.ctrl-btn.on {
  color: var(--amber);
  border-color: var(--amber-dim);
  box-shadow: 0 0 10px rgba(255, 180, 84, .2);
}

.play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform .15s;
  flex: none;
  box-shadow: 0 0 16px rgba(255, 180, 84, .3);
}

.play-btn:hover {
  transform: scale(1.06);
}

.play-btn:active {
  transform: scale(.96);
}

.p-seek-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 540px;
}

.time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted-dim);
  width: 36px;
  flex: none;
}

.time.right {
  text-align: right;
}

.seek {
  position: relative;
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.seek-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .4);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .6);
  overflow: visible;
}

.seek-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(to right, var(--cyan), var(--amber));
  width: 0%;
}

.seek-thumb {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--fg);
  transform: translate(-50%, -50%);
  left: 0%;
  box-shadow: 0 0 0 4px rgba(255, 180, 84, .18);
  opacity: 0;
  transition: opacity .2s;
}

.seek:hover .seek-thumb,
.seek:active .seek-thumb {
  opacity: 1;
}

.p-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.viz {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  flex: none;
}

.viz span {
  width: 3px;
  background: linear-gradient(to top, var(--cyan), var(--amber));
  border-radius: 1px;
  height: 4px;
  transition: height .07s;
  flex: none;
}

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

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 74px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .4);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .6);
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--muted) 70%);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .3), 0 2px 4px rgba(0, 0, 0, .5);
}

.vol-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--muted) 70%);
  cursor: pointer;
  border: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .console-wrap {
    flex-direction: column;
  }
  .dials {
    flex-direction: row;
    width: 100%;
  }
  .dial-box {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 20px 30px;
  }
  .hero {
    padding: 12px 30px 20px;
  }
  section.block {
    padding: 26px 30px;
  }
  .player {
    grid-template-columns: 210px 1fr 170px;
    padding: 12px 18px;
  }
  .vol-row {
    display: none;
  }
  .screen {
    height: 250px;
  }
}

@media (max-width: 880px) {
  .navlinks {
    display: none;
  }
  .nav {
    padding: 16px 20px;
  }
  .hero {
    padding: 12px 20px 20px;
  }
  section.block {
    padding: 22px 20px;
  }
  .screen {
    height: 220px;
  }
  .dial-box {
    padding: 10px;
  }
  .dial {
    width: 60px;
    height: 40px;
  }
  .needle {
    height: 34px;
  }
  .player {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 10px 14px;
    gap: 6px 14px;
  }
  .p-track {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .p-right {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .p-center {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .viz {
    display: none;
  }
  .track-row {
    grid-template-columns: 24px 1fr 60px 34px;
  }
  .t-album, .t-level {
    display: none;
  }
}

@media (max-width: 520px) {
  :root {
    --player-h: 112px;
  }
  .brand {
    font-size: 18px;
  }
  .nav-status {
    display: none;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 14px;
  }
  .mode-tabs {
    flex-wrap: wrap;
  }
  .mode-tab {
    padding: 7px 10px;
    font-size: 10.5px;
  }
  .screen {
    height: 180px;
  }
  .bezel {
    padding: 8px;
    border-radius: 12px;
  }
  .dials {
    gap: 8px;
  }
  .card {
    flex: 0 0 140px;
  }
  .card-art {
    width: 140px;
    height: 140px;
  }
  .track-row {
    grid-template-columns: 20px 1fr 44px;
    gap: 8px;
    padding: 10px 6px;
  }
  .t-dur, .t-like {
    display: none;
  }
  .t-thumb {
    width: 34px;
    height: 34px;
  }
  .p-thumb {
    width: 42px;
    height: 42px;
  }
  .p-title, .p-artist {
    max-width: 120px;
  }
  .p-controls {
    gap: 10px;
  }
  .play-btn {
    width: 40px;
    height: 40px;
  }
}
