/* ============================================
   Vision Music — Global Styles
   ============================================ */

:root {
  --gold: #C39A4A;
  --gold-light: #D4AA5A;
  --gold-deep: #A67C32;
  --gold-dim: #8B6820;

  --bg: #0E0500;
  --bg-alt: #160800;
  --surface: #1A0A00;
  --card: #231200;
  --card-hover: #2a1600;

  --text: #FFFFFF;
  --text-soft: #AA9880;
  --text-dim: #6B5040;

  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);

  --radius-s: 12px;
  --radius-m: 16px;
  --radius-l: 20px;
  --radius-xl: 28px;

  --max-w: 1180px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}

/* Base
   ------------------------------------------ */
* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 100px;
}

a {
  color: var(--gold-light);
  text-decoration: none;
}
a:hover { color: var(--gold); }

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

/* Header
   ------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(14, 5, 0, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(195, 154, 74, 0.25);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand-name-accent {
  color: var(--gold);
  margin-left: 4px;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

/* Hero
   ------------------------------------------ */
.hero {
  position: relative;
  padding: 72px 28px 80px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(195, 154, 74, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(166, 124, 50, 0.12), transparent 60%),
    linear-gradient(180deg, #120700 0%, #0E0500 100%);
}

.hero-glow {
  position: absolute;
  inset: auto -15% -30% -15%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(212, 170, 90, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin: 0 0 18px;
}

.hero-subline {
  max-width: 600px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}

.lede {
  max-width: 560px;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.hero-credibility {
  margin: 20px 0 0;
  max-width: 600px;
  color: var(--gold-light);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1c1000;
  flex-direction: column;
  padding: 10px 22px;
  line-height: 1.1;
  gap: 2px;
  box-shadow: 0 8px 20px rgba(195, 154, 74, 0.25);
}

.btn-primary .btn-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.btn-primary .btn-label {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #1c1000;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-note {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* Hero Visual / Device
   ------------------------------------------ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  width: min(340px, 80%);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(180deg, #2a1500, #140700);
  border: 1px solid rgba(212, 170, 90, 0.25);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(195, 154, 74, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: rotate(-2deg);
}

.device img {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Sections
   ------------------------------------------ */
.section {
  padding: 64px 28px;
  background: var(--bg);
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 0 14px;
}

.section-body {
  color: var(--text-soft);
  max-width: 720px;
  margin: 0;
}

/* Player Section
   ------------------------------------------ */
.player-section {
  padding: 40px 28px 24px;
}

.player-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tb {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .2s ease;
}

.tb:hover {
  border-color: var(--gold-dim);
  color: var(--text);
}

.tb.tba {
  background: rgba(195, 154, 74, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Tracks Grid
   ------------------------------------------ */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.tc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 12px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tc:hover {
  transform: translateY(-3px);
  border-color: rgba(195, 154, 74, 0.4);
  background: var(--card-hover);
}

.tcw {
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  margin-bottom: 12px;
}

.tcov {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-s);
}

.tpb {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #1c1000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tc:hover .tpb {
  opacity: 1;
  transform: translateY(0);
}

.tt {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ta {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Player Bar (Fixed Bottom)
   ------------------------------------------ */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(14, 5, 0, 0.96);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--line);
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 20px;
  align-items: center;
}

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

.player-cover {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.player-meta { min-width: 0; }

.player-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.control-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.control-btn {
  background: none;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease, background .2s ease;
}

.control-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.control-btn.active { color: var(--gold); }

.control-btn.play {
  width: 42px;
  height: 42px;
  background: var(--text);
  color: var(--bg);
}

.control-btn.play:hover {
  background: var(--gold);
  color: #1c1000;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}

.time {
  font-size: 0.72rem;
  color: var(--text-dim);
  min-width: 36px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.progress-container {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width .1s linear;
}

.player-extras {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  width: 100px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

/* Queue Panel
   ------------------------------------------ */
.queue-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 90vw;
  background: rgba(14, 5, 0, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--line);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}

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

.queue-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.queue-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.close-queue {
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 1.4rem;
  cursor: pointer;
}

.queue-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.qi {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease;
}

.qi:hover { background: rgba(255, 255, 255, 0.04); }

.qi.qa { background: rgba(195, 154, 74, 0.12); }

.qthumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.qinfo { flex: 1; min-width: 0; }

.qt {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qa2 {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 2px 0 0;
}

.qp { color: var(--gold); font-size: 0.8rem; }

/* Updates
   ------------------------------------------ */
.updates-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.update-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 22px 24px;
  transition: border-color .2s ease, transform .2s ease;
}

.update-item:hover {
  border-color: rgba(195, 154, 74, 0.45);
  transform: translateY(-2px);
}

.update-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(195, 154, 74, 0.18);
  color: var(--gold);
  margin-bottom: 10px;
}

.update-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--text);
}

.update-item p {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Features
   ------------------------------------------ */
.features {
  margin-top: 40px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px 24px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.feature:hover {
  border-color: rgba(195, 154, 74, 0.45);
  transform: translateY(-2px);
  background: var(--card-hover);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(195, 154, 74, 0.14);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.feature p {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.96rem;
}

/* Artists
   ------------------------------------------ */
.artists {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.artist {
  margin: 0;
  text-align: center;
  transition: transform .2s ease;
}

.artist:hover { transform: translateY(-3px); }

.artist img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(195, 154, 74, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.artist:hover img {
  border-color: var(--gold-light);
  box-shadow: 0 14px 32px rgba(195, 154, 74, 0.25);
}

.artist figcaption {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--text);
}

/* Footer
   ------------------------------------------ */
.site-footer {
  background: #0a0400;
  border-top: 1px solid var(--line);
  padding: 36px 28px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.footer-brand .brand-logo {
  width: 28px;
  height: 28px;
}

.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-nav a:hover { color: var(--text); }

.footer-copy {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin: 0;
  text-align: right;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin: 8px 0 0;
  text-align: right;
  font-style: italic;
}

/* Legal Pages (Privacy, Delete Account)
   ------------------------------------------ */
.legal-main { padding: 60px 28px 40px; }

.legal-article {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px 36px;
}

.legal-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.legal-article h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal-article p,
.legal-article ul { color: var(--text-soft); }

.legal-article ul { padding-left: 20px; }

.legal-article strong { color: var(--text); }

.legal-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.legal-meta {
  color: var(--text-soft);
  margin: 0 0 28px;
  padding: 14px 16px;
  background: #2a1600;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.legal-article code {
  background: #3a1f00;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--gold-light);
}

/* Videos
   ------------------------------------------ */
.videos-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.video-card:hover {
  border-color: rgba(195, 154, 74, 0.45);
  transform: translateY(-2px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold);
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity .2s ease;
  cursor: pointer;
}

.video-card:hover .video-play {
  opacity: 1;
}

.video-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 16px 16px 4px;
  color: var(--text);
}

.video-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0 16px 16px;
}

/* About
   ------------------------------------------ */
.about-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.about-card:hover {
  border-color: rgba(195, 154, 74, 0.45);
  transform: translateY(-2px);
  background: var(--card-hover);
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(195, 154, 74, 0.14);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.about-card p {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

/* Contact / Download
   ------------------------------------------ */
.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  gap: 12px;
}

.contact-label {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.download { text-align: center; }

.download .cta-row {
  justify-content: center;
  margin-top: 24px;
}

/* Toast
   ------------------------------------------ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  z-index: 70;
  animation: toastIn .3s ease;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .device {
    transform: none;
    margin: 0 auto;
  }

  .player-bar {
    grid-template-columns: 1fr 1.2fr .8fr;
  }

  .volume-wrap { display: none; }
}

@media (max-width: 720px) {
  .site-header { padding: 12px 16px; }

  .site-nav { display: none; }

  .hero { padding: 48px 18px 64px; }

  .section { padding: 48px 18px; }

  .tracks-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }

  .player-bar {
    grid-template-columns: 1fr auto;
    padding: 8px 14px;
    gap: 10px;
  }

  .player-extras { display: none; }

  .player-controls { order: 2; }

  .progress-wrap { max-width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .footer-copy { text-align: center; }
  .footer-tagline { text-align: center; }

  .queue-panel {
    width: 100%;
    max-width: 100%;
  }

  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .tc { padding: 8px; }

  .tpb {
    opacity: 1;
    transform: none;
    width: 36px;
    height: 36px;
  }

  .control-buttons { gap: 10px; }

  .control-btn.play {
    width: 38px;
    height: 38px;
  }
}


/* Lyrics Modal */
.lyrics-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lyrics-modal.open {
  display: flex;
}

.lyrics-content {
  background: var(--card-bg, #1a0a00);
  border-radius: 16px;
  max-width: 500px;
  max-height: 70vh;
  width: 90%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lyrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lyrics-header h3 {
  margin: 0;
  color: var(--text-main, #fff);
  font-size: 18px;
  font-weight: 600;
}

.close-lyrics {
  background: none;
  border: none;
  color: var(--text-soft, #999);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-lyrics:hover {
  color: var(--text-main, #fff);
}

.lyrics-body {
  padding: 20px;
  overflow-y: auto;
  color: var(--text-main, #fff);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.lyrics-body p {
  margin: 0;
}
