@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Azeret+Mono:wght@500;600&display=swap");

@font-face {
  font-family: "Geist Pixel";
  src: url("assets/fonts/GeistPixel-Square.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;

  --bg: #040707;
  --bg-card-top: #1e2728;
  --bg-card-bottom: #05090a;
  --bg-card: linear-gradient(180deg, var(--bg-card-top) 0%, var(--bg-card-bottom) 100%);
  --bg-track-hover: rgba(255, 255, 255, 0.06);
  --bg-track-active: rgba(255, 66, 119, 0.12);
  --bg-search: #1d1d1d;
  --bg-tile: #1c2526;
  --bg-tile-hover: #25313334;

  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-faint: rgba(255, 255, 255, 0.3);

  --pink: #ff4277;
  --pink-dim: #a21139;
  --pink-bright: #ff7aa3;
  --pink-grad: linear-gradient(179deg, #dd5d81 0%, #a21139 100%);

  --radius-card: 16px;
  --radius-soft: 8px;
  --radius-pill: 999px;

  --font-pixel: "Geist Pixel", "Azeret Mono", "SFMono-Regular", monospace;
  --font-body: "Archivo", "Helvetica Neue", system-ui, sans-serif;

  --topbar-h: 124px;
  --player-h: 88px;
  --gutter: 20px;
  --sidebar-w: 357px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

html {
  background: var(--bg);
  min-height: 100dvh;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 66, 119, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(40, 120, 200, 0.04), transparent 70%),
    var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pink);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  font-family: var(--font-pixel);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ── Pixel utility ─────────────────────────────────────── */
.pixel {
  font-family: var(--font-pixel);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pixel--sm {
  font-size: 13px;
}

.pixel--xl {
  font-size: 34px;
  line-height: 1;
}

/* ── App grid ──────────────────────────────────────────── */
.app {
  display: grid;
  grid-template-rows: var(--topbar-h) minmax(0, 1fr) var(--player-h);
  height: 100dvh;
  padding: var(--gutter);
  gap: var(--gutter);
  overflow: hidden;
}

/* ── Topbar ────────────────────────────────────────────── */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
}

.topbar__find {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
  color: var(--text);
}

.topbar__find .pixel--sm {
  color: var(--text-muted);
  font-size: 15px;
}

.topbar__find .pixel {
  font-size: 22px;
}

.topbar__center {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.topbar__logo {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  background: var(--bg-search);
  border-radius: 999px;
  flex: none;
  transition: transform 0.4s var(--ease);
}

.topbar__logo:hover {
  transform: scale(1.05);
}

.topbar__logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-search);
  border-radius: 999px;
  padding: 0 22px;
  width: clamp(360px, 36vw, 520px);
  height: 48px;
  border: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.search:focus-within {
  border-color: var(--line-strong);
  background: #232323;
}

.search__icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex: none;
}

.search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  width: 100%;
  font-size: 16px;
  padding: 0;
}

.search input::placeholder {
  color: #aaa;
}

.topbar__cta {
  justify-self: end;
  height: 48px;
  padding: 0 26px;
  border-radius: 6px;
  background: var(--pink-grad);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(162, 17, 57, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

.topbar__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(162, 17, 57, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.topbar__cta:active {
  transform: translateY(0);
}

/* ── Layout ────────────────────────────────────────────── */
.layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr var(--sidebar-w);
  gap: var(--gutter);
  min-height: 0;
}

/* ── Sidebar shared ────────────────────────────────────── */
.sidebar {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* ── Left sidebar ──────────────────────────────────────── */
.sidebar--left {
  padding: 24px 0 12px;
}

.sidebar__brand {
  padding: 0 24px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar__section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
}

.playlist-stack {
  list-style: none;
  margin: 0;
  padding: 4px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.playlist-stack::-webkit-scrollbar {
  width: 8px;
}

.playlist-stack::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.playlist-stack::-webkit-scrollbar-track {
  background: transparent;
}

.playlist-card {
  list-style: none;
  background: rgba(66, 66, 66, 0.18);
  border-radius: var(--radius-soft);
  padding: 9px 8px 12px;
  transition: background 0.25s var(--ease);
}

.playlist-card--compact {
  background: transparent;
  padding: 4px 4px;
}

.playlist-card--active .playlist-card__title {
  color: var(--pink);
}

.playlist-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border-radius: 6px;
  width: 100%;
  text-align: left;
  transition: background 0.2s var(--ease);
}

.playlist-card__header:hover,
.playlist-card__header:focus-visible {
  background: var(--bg-track-hover);
  outline: none;
}

.playlist-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.playlist-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-card__sub {
  font-size: 13px;
  color: var(--text-dim);
}

.track-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 5px 4px;
  border-radius: 6px;
  text-align: left;
  transition: background 0.15s var(--ease);
}

.track button:hover,
.track button:focus-visible {
  background: var(--bg-track-hover);
  outline: none;
}

.track button.is-active {
  background: var(--bg-track-active);
}

.track button.is-active .track__meta strong {
  color: var(--pink);
}

.track__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.track__meta strong {
  font-size: 12.7px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track__meta span {
  font-size: 12.7px;
  color: var(--text-muted);
}

/* ── Covers ────────────────────────────────────────────── */
.cover {
  display: block;
  background: #2a2a2a;
  border-radius: var(--radius-soft);
  overflow: hidden;
  flex: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover--40 {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.cover--58 {
  width: 58px;
  height: 58px;
}

.cover--64 {
  width: 62px;
  height: 62px;
}

/* ── Content (center) ─────────────────────────────────── */
.content {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  overflow-y: auto;
  overflow-anchor: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.content::-webkit-scrollbar {
  width: 8px;
}

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

/* ── Hero with embedded (playable) synth ──────────────── */
.hero {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  background: #0a0d0e;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
}

.made-for-you {
  flex-shrink: 0;
}

.hero__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0d0e;
}

.hero__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1700px;
  height: 1100px;
  border: 0;
  transform: translate(-50%, -50%) scale(var(--hero-scale, 0.6));
  transform-origin: center;
  background: var(--bg);
  /* prevent the iframe's internal focus/load from scrolling our parent layout */
  contain: paint layout;
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 7, 7, 0.85) 0%, rgba(4, 7, 7, 0.5) 28%, rgba(4, 7, 7, 0) 50%),
    linear-gradient(180deg, rgba(4, 7, 7, 0.2) 0%, rgba(4, 7, 7, 0) 26%, rgba(4, 7, 7, 0) 70%, rgba(4, 7, 7, 0.7) 100%);
  transition: opacity 0.4s var(--ease);
}

.hero:hover .hero__veil {
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.hero__copy {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.4s var(--ease);
}

.hero:hover .hero__copy {
  opacity: 0.4;
}

.hero__eyebrow {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero__title {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  max-width: 420px;
}

.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  pointer-events: auto;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--pink-grad);
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  font-family: var(--font-pixel);
  font-size: 18px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(162, 17, 57, 0.5);
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.hero__cta:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.hero__cta-play {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  color: #fff;
}

.hero__cta-play svg {
  width: 14px;
  height: 14px;
}

.hero__cta-arrow {
  font-size: 18px;
  opacity: 0.8;
}

.hero__expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero__expand:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  transform: translateY(-1px);
}

.hero__expand svg {
  width: 14px;
  height: 14px;
}

/* ── Made For You ──────────────────────────────────────── */
.section__title {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.tile {
  background: rgba(255, 255, 255, 0.025);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
}

.tile:hover,
.tile:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  outline: none;
}

.tile.is-active {
  background: rgba(255, 66, 119, 0.1);
}

.tile.is-active .tile__title {
  color: var(--pink);
}

.tile__cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #2a2a2a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  position: relative;
}

.tile__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile__cover::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--pink-grad) center / 12px 12px no-repeat;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 5l13 7-13 7z' fill='white'/></svg>"),
    var(--pink-grad);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 14px 14px, cover;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 8px 18px rgba(162, 17, 57, 0.6);
}

.tile:hover .tile__cover::after,
.tile:focus-visible .tile__cover::after {
  opacity: 1;
  transform: translateY(0);
}

.tile__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tile__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tile__sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.35;
}

/* ── Right sidebar (Now Playing detail) ───────────────── */
.sidebar--right {
  padding: 28px;
  gap: 18px;
}

.now__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.now__head .pixel {
  font-size: 18px;
}

.now__art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a2a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.now__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.25s var(--ease);
}

.now__art.is-changing img {
  opacity: 0.2;
}

.now__art-glow {
  position: absolute;
  inset: -20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 66, 119, 0.25), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.now__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.now__meta strong {
  font-size: 18px;
  color: var(--text);
  line-height: 1.2;
}

.now__meta span {
  font-size: 15px;
  color: var(--text-faint);
  line-height: 1.45;
}

.now__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

/* ── Player bar ────────────────────────────────────────── */
.player {
  background: linear-gradient(180deg, #2b2b2b 0%, #1e2728 100%);
  border-radius: var(--radius-card);
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.player__track {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.player__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.player__meta strong {
  font-size: 16px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player__meta span {
  font-size: 14px;
  color: var(--text-muted);
}

.player__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 420px;
}

.player__controls {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.player__btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: color 0.2s var(--ease), transform 0.15s var(--ease), background 0.2s var(--ease);
}

.player__btn:hover {
  color: var(--text);
}

.player__btn svg {
  width: 18px;
  height: 18px;
}

.player__btn--play {
  width: 36px;
  height: 36px;
  background: var(--text);
  color: #000;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease);
}

.player__btn--play:hover {
  background: #fff;
  color: #000;
  transform: scale(1.06);
}

.player__btn--play svg {
  width: 14px;
  height: 14px;
}

.player__btn--play .pause-icon {
  display: none;
}

.player__btn--play.is-playing .play-icon {
  display: none;
}

.player__btn--play.is-playing .pause-icon {
  display: block;
}

.player__progress {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 720px;
}

.player__time {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.player__bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.player__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.2s var(--ease);
}

.player__bar:hover .player__fill {
  background: var(--pink);
}

.player__right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.player__volume {
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.player__volume-fill {
  width: 60%;
  height: 100%;
  background: var(--text);
}

.player__volume:hover .player__volume-fill {
  background: var(--pink);
}

/* ── Signup modal ──────────────────────────────────────── */
.signup-modal[hidden] {
  display: none;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 7, 0.7);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(460px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  padding: 32px 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  animation: modal-in 0.3s var(--ease);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.modal-close:hover {
  background: var(--bg-track-hover);
  color: var(--text);
}

.modal-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.status-led {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: led-pulse 1.4s ease-in-out infinite;
}

@keyframes led-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.modal-head h2 {
  font-size: 28px;
  margin: 0;
  line-height: 1.1;
}

.modal-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.45;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reserve-form span {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reserve-form input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--text);
  outline: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.reserve-form input:focus {
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.06);
}

.form-status {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-dim);
}

.primary-action {
  margin-top: 6px;
  height: 48px;
  border-radius: 6px;
  background: var(--pink-grad);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(162, 17, 57, 0.45);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.primary-action:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1380px) {
  :root {
    --sidebar-w: 320px;
  }

  .hero__copy {
    max-width: 70%;
  }
}

@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 300px 1fr;
  }

  .sidebar--right {
    display: none;
  }

  .player__center {
    min-width: 320px;
  }
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar--left {
    display: none;
  }

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

  .topbar__find {
    display: none;
  }

  .topbar__cta {
    font-size: 14px;
    padding: 0 16px;
  }
}

@media (max-width: 720px) {
  .app {
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  body {
    overflow-x: hidden;
  }

  .player {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .player__right {
    display: none;
  }

  .player__center {
    min-width: 0;
  }
}
