/* ============================================================
   DJMC stylesheet (layout 1A "Broadcast": player-first home)
   Tokens follow the approved design canvas.
   ============================================================ */
:root {
  --bg: #05060d;
  --bg-alt: #0a0c1a;
  --bg-card: #10132373;
  --navy: #002186;
  --accent-a: #5b6dff;
  --accent-b: #b25bff;
  --cyan: #22d3ee;
  --text: #f4f5fb;
  --text-dim: #a6abc4;
  --text-faint: #7d82a4;
  --border: #ffffff17;
  --border-strong: #ffffff2e;
  --radius: 16px;
  --radius-sm: 12px;
  --grad: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  --ff-display: "Space Grotesk", "Inter", sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --header-h: 76px;
  --player-h: 72px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
html.no-js .preloader { display: none; }

body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--ff-body); line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-player { padding-bottom: var(--player-h); }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0 0 1em; color: var(--text-dim); }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cyan { color: var(--cyan); }
.mono { font-variant-numeric: tabular-nums; }
.eyebrow { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--cyan); margin: 0 0 .8em; font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.empty { color: var(--text-faint); grid-column: 1 / -1; margin: 0; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--cyan); color: #05060d; padding: 8px 14px; border-radius: 8px; z-index: 1000; }
.skip:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 100px; font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px #5b6dff88; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px #5b6dffaa; }
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-sm { padding: .6em 1.3em; font-size: .88rem; }
.btn-block { width: 100%; }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 500; height: var(--header-h);
  display: flex; align-items: center;
  background: #05060dcc; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 36px; height: 36px; object-fit: contain; }
.brand-text { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .01em; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { font-size: .92rem; color: var(--text-dim); padding: 6px 0; position: relative; transition: color .2s ease; }
.main-nav a:hover { color: var(--text); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--cyan); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 0 auto; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= FEATURED ================= */
.featured { position: relative; overflow: hidden; }
.featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 15% 20%, #002186aa, transparent 50%), radial-gradient(circle at 85% 80%, #b25bff1f, transparent 45%);
}
.featured-inner { position: relative; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; padding: 64px 24px; }
.featured-copy { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.featured-title { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.05; margin: 0 0 .3em; }
.featured-desc { font-size: 1.02rem; max-width: 480px; }
.featured-player { display: flex; align-items: center; gap: 20px; margin: 10px 0 22px; }
.play-big {
  width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: var(--grad); color: #fff; box-shadow: 0 12px 32px -8px #5b6dff88;
  display: flex; align-items: center; justify-content: center; transition: transform .2s ease;
}
.play-big:hover { transform: scale(1.05); }
.play-big svg { width: 26px; height: 26px; }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 56px; flex: 1; min-width: 0; cursor: pointer; overflow: hidden; }
.wave i { flex: 1 0 0; min-width: 3px; max-width: 8px; border-radius: 3px; background: linear-gradient(180deg, var(--cyan), var(--accent-a)); opacity: .35; transition: opacity .15s linear; }
.wave i.on { opacity: 1; }
.featured-player .mono { color: var(--text-faint); font-size: .85rem; flex-shrink: 0; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 16px; }
.hero-social { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-social a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-family: var(--ff-display); font-size: .86rem; border: 1px solid var(--border); padding: .45em 1em; border-radius: 100px; transition: border-color .2s ease, color .2s ease; }
.hero-social a:hover { border-color: var(--cyan); color: var(--cyan); }
.featured-art-frame { position: relative; aspect-ratio: 1; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px -30px #000c; background: radial-gradient(circle at 30% 30%, #002186, #05060d 70%); }
.featured-art-frame img { width: 100%; height: 100%; object-fit: cover; }
.featured-art-frame img.is-logo { object-fit: contain; padding: 18%; }
.badge-featured { position: absolute; top: 16px; left: 16px; background: #05060dcc; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 6px 14px; border-radius: 100px; font-size: .72rem; font-family: var(--ff-display); font-weight: 600; color: var(--cyan); letter-spacing: .08em; text-transform: uppercase; }

/* ================= SECTIONS ================= */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.row-head h2 { font-size: 1.5rem; margin: 0; }
.row-note { font-size: .82rem; color: var(--text-faint); font-family: var(--ff-display); }
.section-desc { color: var(--text-dim); }

/* Quality toggle */
.quality-toggle { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--border); border-radius: 100px; padding: 3px 4px 3px 12px; }
.quality-label { font-family: var(--ff-display); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-right: 4px; }
.quality-btn { background: transparent; border: none; color: var(--text-dim); font-family: var(--ff-display); font-size: .8rem; font-weight: 600; padding: .35em .85em; border-radius: 100px; cursor: pointer; }
.quality-btn[aria-pressed="true"] { background: var(--grad); color: #fff; }

/* ================= MIX GRID ================= */
.mix-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.mix-card { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.mix-thumb { position: relative; border: none; padding: 0; background: #000; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 1; width: 100%; }
.mix-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.mix-thumb:hover img { transform: scale(1.04); }
.mix-thumb .pill-play { position: absolute; bottom: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; background: #05060dd9; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--cyan); }
.mix-card.playing .pill-play { background: var(--grad); color: #fff; border-color: transparent; }
.mix-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mix-title { font-family: var(--ff-display); font-weight: 600; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mix-sub, .mix-plays { color: var(--text-faint); font-size: .8rem; }

/* ================= PLAYLISTS ================= */
.playlists { display: flex; flex-direction: column; gap: 40px; }
.playlist-head { display: flex; gap: 20px; align-items: center; margin-bottom: 16px; }
.playlist-cover { width: 84px; height: 84px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.playlist-head h3 { font-size: 1.2rem; margin-bottom: .15em; }
.playlist-head p { margin: 0 0 .2em; font-size: .92rem; }
.playlist-meta { font-family: var(--ff-display); font-size: .76rem; color: var(--text-faint); letter-spacing: .04em; }
.tracklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 10px; }
.track-row {
  display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.track-row:hover { border-color: var(--border-strong); }
.track-row.playing { border-color: var(--accent-a); background: #5b6dff14; }
.track-row .tr-play { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-strong); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.track-row.playing .tr-play { background: var(--grad); border-color: transparent; color: #fff; }
.tr-meta { min-width: 0; display: flex; flex-direction: column; }
.tr-title { font-family: var(--ff-display); font-weight: 600; font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tr-sub { font-size: .78rem; color: var(--text-faint); }
.tr-dur { font-size: .8rem; color: var(--text-faint); }

/* ================= VIDEO GRID ================= */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.media-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, transform .2s ease; }
.media-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.media-thumb { position: relative; display: block; width: 100%; aspect-ratio: 16/9; border: none; padding: 0; cursor: pointer; background: #000; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-thumb .tag { position: absolute; top: 12px; left: 12px; background: #05060dcc; border: 1px solid var(--border-strong); font-family: var(--ff-display); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; padding: .35em .75em; border-radius: 100px; color: var(--text); }
.media-thumb .duration { position: absolute; right: 12px; bottom: 12px; background: #05060dcc; font-family: var(--ff-display); font-size: .74rem; padding: .3em .6em; border-radius: 6px; color: var(--text); }
.play-badge { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--grad); border-radius: 50%; color: #fff; box-shadow: 0 10px 30px -8px #000a; }
.media-body { padding: 16px 18px 20px; }
.media-body h3 { font-size: 1.05rem; margin-bottom: .25em; }
.media-body p { font-size: .88rem; margin: 0; }

/* ================= ABOUT ================= */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about-frame { aspect-ratio: 1; border-radius: var(--radius); background: radial-gradient(circle at 30% 30%, #002186, #05060d 70%); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-frame::before { content: ""; position: absolute; inset: 0; background: repeating-radial-gradient(circle, transparent 0 16px, #ffffff0a 17px 18px); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::before { display: none; }
.about-logo { width: 55%; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px #000a); animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.about-stats { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--cyan); }
.stat-label { font-size: .82rem; color: var(--text-faint); }

/* ================= ROTATION ================= */
.rotation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.rotation-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 26px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; transition: border-color .2s ease; }
.rotation-card:hover { border-color: var(--accent-a); }
.rotation-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--accent-b)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.rotation-name { font-family: var(--ff-display); font-weight: 600; }
.rotation-genre { font-size: .8rem; color: var(--text-faint); }

/* ================= MAILING LIST ================= */
.mailing-section { background: linear-gradient(160deg, #0a0c1a, #05060d 60%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mailing-inner { text-align: center; max-width: 560px; }
.mailing-form { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-top: 8px; }
.mailing-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%; }
.mailing-form input[type="email"] { flex: 1; min-width: 220px; background: #ffffff0a; border: 1px solid var(--border-strong); color: var(--text); padding: .9em 1.2em; border-radius: 100px; font-size: .95rem; }
.mailing-form input[type="email"]:focus { outline: none; border-color: var(--cyan); }
.consent { display: flex; gap: 10px; align-items: flex-start; text-align: left; font-size: .82rem; color: var(--text-faint); max-width: 460px; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--accent-a); flex-shrink: 0; }
.consent a, .form-fine a { color: var(--cyan); }
.form-fine { font-size: .78rem; color: var(--text-faint); margin: 0; }

/* ================= BOOKING ================= */
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.booking-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.booking-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.booking-list li { padding-left: 28px; position: relative; color: var(--text-dim); font-size: .95rem; }
.booking-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(120deg, var(--accent-a), var(--cyan)); }
.booking-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-split > div { display: flex; flex-direction: column; gap: 8px; }
.booking-form label { font-family: var(--ff-display); font-size: .82rem; color: var(--text-dim); }
.booking-form input, .booking-form select, .booking-form textarea { background: #ffffff0a; border: 1px solid var(--border-strong); color: var(--text); padding: .8em 1em; border-radius: var(--radius-sm); font-family: var(--ff-body); font-size: .95rem; width: 100%; }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--cyan); }
.booking-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a6abc4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; }
.form-note { font-size: .85rem; min-height: 1.2em; margin: 4px 0 0; }
.form-note-success { color: #4ade80; }
.form-note-error { color: #f87171; }

/* ================= FOOTER ================= */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: .9rem; color: var(--text-dim); }
.footer-links a:hover, .footer-copy a:hover { color: var(--cyan); }
.footer-copy { width: 100%; text-align: center; margin: 32px 0 0; font-size: .8rem; color: var(--text-faint); }

/* ================= PLAYER BAR ================= */
.player-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 600; height: var(--player-h);
  display: flex; align-items: center; gap: 16px; padding: 0 24px;
  background: #0a0c1af2; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.pb-art { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.pb-meta { display: flex; flex-direction: column; min-width: 0; width: 200px; flex-shrink: 0; }
.pb-title { font-family: var(--ff-display); font-weight: 600; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pb-artist { color: var(--text-faint); font-size: .76rem; }
.pb-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.pb-btn { background: none; border: none; color: var(--text-dim); cursor: pointer; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pb-btn:hover { color: var(--text); }
.pb-btn:disabled { opacity: .3; cursor: default; }
.pb-play { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--text); color: #05060d; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pb-play.loading { opacity: .5; }
.pb-time { color: var(--text-faint); font-size: .76rem; flex-shrink: 0; min-width: 40px; text-align: center; }
.pb-progress { flex: 1; height: 14px; display: flex; align-items: center; cursor: pointer; touch-action: none; min-width: 60px; }
.pb-progress::before { content: ""; position: absolute; left: 0; right: 0; height: 4px; }
.pb-progress { position: relative; }
.pb-fill { position: relative; height: 4px; width: 0%; border-radius: 2px; background: linear-gradient(90deg, var(--accent-a), var(--cyan)); }
.pb-progress::after { content: ""; position: absolute; left: 0; right: 0; height: 4px; border-radius: 2px; background: var(--border); z-index: -1; }
.pb-volume { display: flex; align-items: center; gap: 8px; color: var(--text-dim); flex-shrink: 0; }
.pb-volume input { width: 80px; accent-color: var(--cyan); }
.pb-quality { font-family: var(--ff-display); font-size: .7rem; letter-spacing: .06em; color: var(--cyan); border: 1px solid var(--border); border-radius: 100px; padding: .25em .6em; flex-shrink: 0; }

/* ================= VIDEO DIALOG ================= */
.video-dialog { width: min(100% - 32px, 900px); padding: 0; border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--bg-alt); color: var(--text); overflow: hidden; }
.video-dialog::backdrop { background: #000000d9; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: #00000090; color: #fff; border: 1px solid var(--border-strong); font-size: 1.4rem; line-height: 1; cursor: pointer; }
.video-frame { width: 100%; aspect-ratio: 16/9; background: #000; position: relative; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-family: var(--ff-display); padding: 24px; text-align: center; }
.modal-info { padding: 20px 26px 26px; }
.modal-info h3 { margin-bottom: .3em; font-size: 1.2rem; }
.modal-info p { margin: 0; font-size: .92rem; }

/* ================= RESPONSIVE ================= */
@media (max-width: 960px) {
  .featured-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .featured-art { max-width: 360px; width: 100%; margin: 0 auto; order: -1; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 800px) {
  .header-cta { display: none; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; margin: 0;
    background: #05060df5; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 40px 28px; gap: 26px; transform: translateX(100%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .pb-volume, .pb-quality { display: none; }
  .pb-meta { width: auto; flex: 1; }
  .pb-progress { position: absolute; left: 0; right: 0; top: -7px; height: 14px; }
  .pb-time { display: none; }
  .player-bar { gap: 12px; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .form-row-split { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .mix-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tracklist { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .about-logo { animation: none; }
  * { transition-duration: 0s !important; }
}
