/* ============================================
   THEME VARIABLES
============================================ */
:root {
  --gold: #d4af37;
  --gold-light: #f5e6a0;
  --gold-dark: #a9862f;

  --accent: var(--gold);
  --accent-light: var(--gold-light);
  --accent-dark: var(--gold-dark);

  --accent-glow: rgba(212,175,55,0.45);

  --bg: #000;
  --text: #fff;
  --panel: #0a0a0a;
  --muted: #b5b5b5;
  --red: #ff4444;
}

/* ============================================
   GLOBAL BASE
============================================ */
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: #fff;
}

/* Wrapper */
.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

/* Headers */
h1, h2, h3 {
  font-family: "Lilita One", cursive;
  color: var(--accent);
  margin: 0.3em 0;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(212,175,55,0.15);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: clamp(18px, 4vw, 36px);
  background: linear-gradient(
      180deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.9)
    ),
    url("https://Bhillion-Dollar-Music.b-cdn.net/Singles/Faith-Tape-Vol-2-Singles/12am%20In%20La%20(Poltergeist)/the%20cover.png")
      center/cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
}

.cover {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid var(--accent);
}

.hero-copy { text-align: left; }

.hero-tagline {
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge-red {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-sub {
  color: var(--muted);
}

.hero-stats {
  margin: 10px 0 14px;
  font-size: 1.05em;
}

.hero-dsp-image img {
  width: 180px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(212,175,55,0.25);
}

/* ============================================
   BUTTONS
============================================ */
.button {
  display: inline-block;
  padding: 14px 18px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.15s;
}

.button:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #000;
}
.button-primary:hover {
  background: var(--gold-light);
}

.btn-deluxe {
  border-color: #ffd166;
  color: #ffd166;
}

/* Vertical stack */
.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   PANELS (Why + Streaming)
============================================ */
.panel {
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 16px;
  margin: 24px auto 0;
  max-width: 980px;
}

/* ============================================
   WHY $1.50 SECTION
============================================ */
.why-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  margin-top: 12px;
}

.why-logo img {
  width: 110px;
}

.why-one {
  font-size: 1.05em;
  line-height: 1.55;
  margin-bottom: 12px;
}

.why-dsp-image {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--accent);
}

/* ============================================
   VIDEO PLAYER
============================================ */
.video-card {
  border: 1px solid var(--accent);
  border-radius: 14px;
  background: #050505;
  overflow: hidden;
}

/* ============================================
   LYRICS
============================================ */
details.lyrics {
  background: #0b0b0b;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 14px;
}

details.lyrics summary {
  font-family: "Lilita One";
  font-size: 1.2em;
  color: var(--accent);
  cursor: pointer;
}

.lyrics-body {
  white-space: pre-wrap;
  line-height: 1.55;
}

/* ============================================
   STREAMING SECTION
============================================ */
.stream-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.stream-btn.disabled {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* ============================================
   MODALS
============================================ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
}

.modal-content {
  background: #111;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
}

.email-field {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  background: #000;
  color: var(--text);
}

.success-cover {
  width: 160px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  display: block;
  margin: 12px auto;
}

/* ============================================
   MOBILE CLEANUP
============================================ */
@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cover { margin: 0 auto; }
  .why-layout { grid-template-columns: 1fr; text-align: center; }
}
