/* ============================================================
   SACRED ILLUSIONS — Global Design System
   Danielle | sacredillusions.com
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&family=Raleway:wght@200;300;400;500;600&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Core palette */
  --black:          #080808;
  --black-rich:     #0d0d0d;
  --black-soft:     #111111;
  --black-card:     #141414;
  --black-elevated: #1a1a1a;
  --cream:          #f5f0e8;
  --cream-soft:     #ede8dd;
  --cream-muted:    #c8c2b4;
  --gold:           #d4af37;
  --gold-light:     #e8c84a;
  --gold-pale:      #f0d870;
  --gold-dark:      #a8881a;
  --gold-muted:     rgba(212, 175, 55, 0.15);
  --gold-glow:      rgba(212, 175, 55, 0.35);
  --white:          #ffffff;
  --white-10:       rgba(255,255,255,0.10);
  --white-20:       rgba(255,255,255,0.20);

  /* Typography */
  --font-display:   'Playfair Display', 'Georgia', serif;
  --font-elegant:   'Cormorant Garamond', 'Georgia', serif;
  --font-body:      'Montserrat', 'Helvetica Neue', sans-serif;
  --font-ui:        'Raleway', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  24px;
  --s6:  32px;
  --s7:  48px;
  --s8:  64px;
  --s9:  96px;
  --s10: 128px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-silk:  cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-snap:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-glide: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:  0.15s;
  --t-mid:   0.3s;
  --t-slow:  0.6s;

  /* Shadows */
  --shadow-gold:  0 0 20px rgba(212,175,55,0.3), 0 0 60px rgba(212,175,55,0.1);
  --shadow-gold-intense: 0 0 30px rgba(212,175,55,0.5), 0 0 80px rgba(212,175,55,0.2);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-deep:  0 20px 60px rgba(0,0,0,0.8);

  /* Player height */
  --player-height: 90px;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; /* prevent Android font scaling */
  overflow-x: hidden; /* belt-and-suspenders with body — iOS Safari needs both */
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: var(--player-height);
  -webkit-overflow-scrolling: touch; /* smooth momentum scroll on Android */
  touch-action: pan-y;
}

/* ─── Leopard Background Texture ────────────────────────────── */
.leopard-bg {
  background-image: url('../images/LeopardPrint.png');
  background-size: 320px 320px;
  background-repeat: repeat;
  opacity: 0.045;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-wrapper {
  position: relative;
  z-index: 1;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.4rem); }

.display-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 40%, var(--gold-dark) 70%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  /* filter: drop-shadow() on clip-text crashes Android Chrome — use wrapper glow instead */
}

.subtitle-text {
  font-family: var(--font-elegant);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
}

.label-text {
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.8;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-silk), opacity var(--t-fast) var(--ease-silk);
}

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

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--s7);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  transition: all var(--t-mid) var(--ease-silk);
}

.nav.scrolled {
  height: 60px;
  background: rgba(8,8,8,0.97);
  border-bottom-color: rgba(212,175,55,0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity var(--t-mid) var(--ease-silk);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--t-fast) var(--ease-silk);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-mid) var(--ease-glide);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--s2);
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--t-mid) var(--ease-silk);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav { padding: 0 var(--s4); }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: var(--s3) 0 var(--s4);
    z-index: 99;
    max-width: 100vw;
    overflow: hidden;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px var(--s6);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border-bottom: none;
  }
  .nav-links a::after { display: none; }
  .nav.scrolled .nav-links { top: 60px; }
}

/* ─── Gold Divider ──────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--s5) auto;
}

.gold-divider--wide {
  width: 120px;
}

/* ─── Section Layout ────────────────────────────────────────── */
.section {
  padding: var(--s10) var(--s7);
  max-width: 1280px;
  margin: 0 auto;
}

.section--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--s8);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t-mid) var(--ease-glide);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast) var(--ease-silk);
}

.btn:hover::before {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  font-weight: 700;
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(212,175,55,0.5);
  transform: translateY(-2px);
  background-position: 100% 0;
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.5);
}

.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--cream-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-glide);
  box-shadow: var(--shadow-card);
}

.card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}

/* ─── Track Row ─────────────────────────────────────────────── */
.track-list {
  list-style: none;
}

.track-item {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) var(--s4);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-silk);
  position: relative;
  border: 1px solid transparent;
}

.track-item:hover,
.track-item.active {
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.15);
}

.track-item.active .track-number {
  color: var(--gold);
}

.track-item.active .track-name {
  color: var(--gold-light);
}

.track-item.playing .track-number {
  display: none;
}

.track-playing-indicator {
  display: none;
}

.track-item.playing .track-playing-indicator {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 16px;
  width: 20px;
}

.track-playing-indicator span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: equalizer 0.8s ease-in-out infinite;
}

.track-playing-indicator span:nth-child(1) { height: 60%; animation-delay: 0s; }
.track-playing-indicator span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.track-playing-indicator span:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.track-playing-indicator span:nth-child(4) { height: 80%; animation-delay: 0.1s; }

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

.track-number {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-muted);
  min-width: 20px;
  text-align: center;
}

.track-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,0.2);
  transition: box-shadow var(--t-mid) var(--ease-silk);
}

.track-item:hover .track-thumb,
.track-item.active .track-thumb {
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  border-color: rgba(212,175,55,0.5);
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--t-fast) var(--ease-silk);
}

.track-meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--cream-muted);
  margin-top: 2px;
}

.track-duration {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cream-muted);
  flex-shrink: 0;
}

/* ─── Track Share Button ─────────────────────────────────── */
.track-share-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(200,194,180,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: color var(--t-fast) var(--ease-silk), opacity var(--t-fast);
  border-radius: var(--radius-sm);
}

.track-item:hover .track-share-btn { opacity: 1; }
.track-share-btn:hover { color: var(--gold); transform: scale(1.15); }
.track-share-btn:active { color: var(--gold); opacity: 1; }

/* ─── Share Modal ────────────────────────────────────────── */
#si-share-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
}

#si-share-modal.open { display: flex; }

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

.share-modal-sheet {
  position: relative;
  z-index: 1;
  background: var(--black-elevated);
  border: 1px solid rgba(212,175,55,0.2);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: var(--s5) var(--s6) calc(var(--s6) + env(safe-area-inset-bottom, 0px));
  width: 100%;
  max-width: 480px;
  animation: sheet-up 0.28s var(--ease-glide);
}

@keyframes sheet-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.share-modal-handle {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 0 auto var(--s5);
}

.share-modal-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  text-align: center;
  margin-bottom: 4px;
}

.share-modal-artist {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--s5);
}

.share-modal-url {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--cream-muted);
  text-align: center;
  margin-bottom: var(--s4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-modal-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: var(--s5);
}

.share-social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  cursor: pointer;
  color: var(--cream-muted);
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t-fast) var(--ease-silk);
  min-width: 72px;
  text-decoration: none;
}

.share-social-btn:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.3);
  color: var(--gold);
  transform: translateY(-2px);
}

.share-copy-btn {
  width: 100%;
  padding: 13px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-silk);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.share-copy-btn:hover {
  background: rgba(212,175,55,0.18);
  border-color: var(--gold);
}

.share-copy-btn.copied {
  background: rgba(212,175,55,0.25);
  color: var(--gold-pale);
}

.track-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0;
  transition: all var(--t-fast) var(--ease-silk);
}

.track-item:hover .track-play-btn {
  opacity: 1;
}

.track-item.active .track-play-btn,
.track-item.playing .track-play-btn {
  opacity: 1;
  background: rgba(212,175,55,0.2);
}

/* ─── Album Art Card ────────────────────────────────────────── */
.album-art-wrap {
  position: relative;
  display: inline-block;
}

.album-art {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  border: 1px solid rgba(212,175,55,0.3);
  transition: box-shadow var(--t-slow) var(--ease-silk);
}

.album-art.spinning {
  animation: spin-art 20s linear infinite;
}

@keyframes spin-art {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.album-art-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* ─── Global Player Bar ─────────────────────────────────────── */
:root {
  --player-height: 88px;
}

#global-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-height);
  background: linear-gradient(180deg, rgba(12,10,8,0.96) 0%, rgba(8,6,4,0.99) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5), 0 -1px 0 rgba(212,175,55,0.08);
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}

/* ── Track info (left) ── */
.player-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 240px;
  min-width: 0;
}

.player-art-wrap {
  position: relative;
  flex-shrink: 0;
}

.player-art {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 0 0 0 rgba(212,175,55,0);
  display: block;
  transition: box-shadow var(--t-mid) var(--ease-silk);
}

#global-player.is-playing .player-art {
  box-shadow: 0 0 16px rgba(212,175,55,0.5), 0 0 32px rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.6);
  animation: art-pulse 3s ease-in-out infinite;
}

@keyframes art-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(212,175,55,0.4), 0 0 28px rgba(212,175,55,0.12); }
  50%       { box-shadow: 0 0 22px rgba(212,175,55,0.6), 0 0 48px rgba(212,175,55,0.2); }
}

.player-track-text { min-width: 0; }

.player-track-name {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.player-idle-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.83rem;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.player-artist-name {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-top: 3px;
  text-transform: uppercase;
}

/* ── Controls (center) ── */
.player-controls {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  max-width: 600px;
}

.player-controls-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(200,194,180,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast) var(--ease-silk),
              transform var(--t-fast) var(--ease-silk),
              opacity var(--t-fast);
  padding: 4px;
  border-radius: 50%;
  line-height: 0;
}

.player-btn:hover { color: var(--cream); transform: scale(1.12); }
.player-btn:active { transform: scale(0.95); }
.player-btn.active { color: var(--gold); }
.player-btn.active:hover { color: var(--gold-light); }

/* Play/Pause — gold circle */
.player-btn-play {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 50%;
  color: #0a0800 !important;
  box-shadow: 0 2px 12px rgba(212,175,55,0.35);
  transition: box-shadow var(--t-fast) var(--ease-silk),
              transform var(--t-fast) var(--ease-silk);
}

.player-btn-play:hover {
  box-shadow: 0 4px 22px rgba(212,175,55,0.65);
  transform: scale(1.1) !important;
}

.player-btn-play:active { transform: scale(0.97) !important; }

/* Prev / Next — slightly larger */
.player-btn-prev,
.player-btn-next {
  color: rgba(200,194,180,0.8);
}
.player-btn-prev:hover,
.player-btn-next:hover { color: var(--cream); }

/* ── Progress row ── */
.player-progress-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-time {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
  color: rgba(200,194,180,0.5);
  min-width: 32px;
  letter-spacing: 0.04em;
}

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

/* Track rail */
.progress-bar-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: height var(--t-fast) var(--ease-silk);
}

.progress-bar-wrap:hover { height: 5px; }

/* Filled portion */
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-pale) 100%);
  border-radius: var(--radius-full);
  position: relative;
  min-width: 0;
  transition: width 0.15s linear;
  will-change: width;
}

/* Glowing head dot */
.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-pale);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.3),
              0 0 10px rgba(212,175,55,0.7),
              0 0 24px rgba(212,175,55,0.35);
  transition: transform var(--t-fast) var(--ease-silk),
              box-shadow var(--t-fast) var(--ease-silk);
  opacity: 0;
}

/* Show dot only when something has loaded */
#global-player.has-track .progress-bar-fill::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.progress-bar-wrap:hover .progress-bar-fill::after {
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25),
              0 0 14px rgba(212,175,55,0.9),
              0 0 32px rgba(212,175,55,0.5);
}

/* Buffered ghost fill */
.progress-bar-buffer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius-full);
  pointer-events: none;
}

/* ── Volume (right) ── */
.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 148px;
  justify-content: flex-end;
}

.volume-slider-wrap {
  width: 72px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: height var(--t-fast);
}

.volume-slider-wrap:hover { height: 5px; }

.volume-slider-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-full);
  pointer-events: none;
  transition: width var(--t-fast) var(--ease-silk);
}

/* Idle shimmer on rail when nothing playing */
#global-player:not(.has-track) .progress-bar-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,55,0.18) 40%,
    rgba(212,175,55,0.05) 60%,
    transparent 100%);
  background-size: 200% 100%;
  animation: rail-shimmer 2.5s ease-in-out infinite;
  border-radius: var(--radius-full);
}

@keyframes rail-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #global-player { padding: 0 16px; gap: 12px; }
  .player-track-info { flex: 0 0 auto; max-width: 140px; }
  .player-volume { display: none; }
  .player-btn-prev, .player-btn-next { display: flex; }
}

@media (max-width: 480px) {
  .player-track-info { max-width: 110px; }
  .player-controls-row { gap: 14px; }
}

/* ─── Hero Section ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--s7) var(--s8);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,175,55,0.06) 0%, transparent 70%),
              linear-gradient(180deg, rgba(8,8,8,0) 60%, rgba(8,8,8,1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ─── Song Cover Grid ───────────────────────────────────────────────────── */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s5);
}

@media (max-width: 900px) {
  .cover-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
}

.cover-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid rgba(212,175,55,0.15);
  transition: all var(--t-mid) var(--ease-glide);
}

.cover-item:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-intense);
}

.cover-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-silk);
}

.cover-item:hover img {
  transform: scale(1.06);
}

.cover-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s3);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-silk);
}

.cover-item:hover .cover-item-overlay {
  opacity: 1;
}

.cover-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px;
  height: 52px;
  background: rgba(212,175,55,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  transition: all var(--t-mid) var(--ease-glide);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.cover-item:hover .cover-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ─── Diamond Particles ───────────────────────────────────────────────────── */
.diamond-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.diamond-particles .particle {
  position: absolute;
  color: var(--gold);
  font-size: 8px;
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80px) rotate(180deg) scale(1.2); }
}

/* ─── Gold shimmer line ──────────────────────────────────────────────────── */
.shimmer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer-move 3s ease-in-out infinite;
  opacity: 0.4;
  margin: var(--s6) 0;
}

@keyframes shimmer-move {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: var(--s7) var(--s6) calc(var(--s7) + var(--player-height));
  border-top: 1px solid rgba(212,175,55,0.08);
  color: var(--cream-muted);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SACRED ILLUSIONS — LUXURY UPGRADE LAYER
   ═══════════════════════════════════════════════════════════ */

/* ─── Gold Foil Text Effect ─────────────────────────────── */
.gold-foil {
  background: linear-gradient(
    135deg,
    #c8a415 0%, #e8c84a 20%, #f5d76e 35%,
    #d4af37 50%, #f0d870 65%, #e8c84a 80%, #c8a415 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foil-shift 4s ease-in-out infinite;
}
@keyframes foil-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ─── Leopard Texture Sections ──────────────────────────── */
.leopard-accent {
  position: relative;
}
.leopard-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/LeopardPrint.png');
  background-size: 320px;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.leopard-accent > * { position: relative; z-index: 1; }

.leopard-accent-strong::before { opacity: 0.07; }
.leopard-accent-subtle::before { opacity: 0.025; }

/* ─── Sparkle / Diamond Particles Enhanced ──────────────── */
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sparkle-field .sp {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-light);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation: sparkle-drift linear infinite;
  opacity: 0;
}
@keyframes sparkle-drift {
  0%   { transform: translateY(0)  rotate(0deg)   scale(0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-40vh) rotate(180deg) scale(1.2); opacity: 0.8; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-80vh) rotate(360deg) scale(0); opacity: 0; }
}

/* ─── Streaming Links Row ───────────────────────────────── */
.streaming-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 40px 24px;
}
.streaming-row-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-right: 8px;
}
.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(255,255,255,0.03);
  color: var(--cream-muted);
  transition: all 0.25s var(--ease-glide);
  white-space: nowrap;
}
.streaming-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.15);
}
.streaming-btn svg { flex-shrink: 0; }

/* ─── Newsletter / Fan Club ─────────────────────────────── */
.newsletter-section {
  position: relative;
  padding: 96px 24px 96px;
  text-align: center;
  background: var(--black);
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  background: #141414;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 48px 40px 40px;
}
@media (max-width: 600px) {
  .newsletter-inner { padding: 36px 24px 32px; }
}
.newsletter-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
}
.newsletter-sub {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 16px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s;
}
.newsletter-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream);
  min-width: 0;
}
.newsletter-input::placeholder { color: var(--cream-muted); opacity: 0.6; }
.newsletter-submit {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border: none;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-submit:hover { opacity: 0.9; transform: scale(1.02); }
.newsletter-disclaimer {
  font-size: 0.7rem;
  color: var(--cream-muted);
  opacity: 0.5;
}
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; border-radius: var(--radius-xl); }
  .newsletter-submit { border-radius: 0 0 var(--radius-xl) var(--radius-xl); padding: 14px; }
}

/* ─── Press / Quotes (Testimonial) ────────────────────── */
.press-section {
  padding: 80px 32px 96px;
  text-align: center;
  background: #111;
  border-top: 1px solid rgba(212,175,55,0.1);
}
.press-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.press-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.15;
}
.press-subheading {
  font-size: 0.9rem;
  color: rgba(232,226,214,0.5);
  margin-bottom: 52px;
  font-style: italic;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .press-grid { grid-template-columns: 1fr; }
}
.press-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 22px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  border: 1px solid #e8e8e8;
}
.press-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
  color: #f5a623;
}
.press-quote {
  font-family: var(--font-body, sans-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.press-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.press-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-display, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.press-byline-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.press-source {
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.press-source-label {
  font-family: var(--font-ui, sans-serif);
  font-size: 0.7rem;
  color: #888;
}

/* ─── Back To Top ───────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  backdrop-filter: blur(8px);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: rgba(212,175,55,0.28);
  transform: translateY(-2px);
}

/* ─── Audio Visualizer Canvas ───────────────────────────── */
#si-visualizer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 100%);
  height: 44px;
  opacity: 0.45;
  pointer-events: none;
}

/* ─── Enhanced Track Hover ──────────────────────────────── */
.track-item {
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.track-item:hover {
  box-shadow: 0 0 0 1px rgba(212,175,55,0.15), 0 4px 20px rgba(212,175,55,0.06);
  transform: translateX(3px);
}
.track-item.playing {
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 4px 24px rgba(212,175,55,0.12);
}

/* ─── Merch Page ────────────────────────────────────────── */
.merch-hero {
  padding: 140px 48px 60px;
  text-align: center;
  position: relative;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.merch-card {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.merch-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.2);
}
.merch-img-wrap {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--black-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-img-placeholder {
  font-size: 4rem;
  opacity: 0.3;
}
.merch-coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.merch-coming-badge {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.5);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(212,175,55,0.1);
}
.merch-info { padding: 20px; }
.merch-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.merch-price {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ─── Videos Page ───────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.video-card {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.video-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--black-elevated);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,0.1); }
.video-play-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.video-card:hover .video-play-circle {
  background: rgba(212,175,55,0.35);
  transform: scale(1.1);
}
.video-info { padding: 18px 20px; }
.video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.video-meta {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ─── Lyrics Panel ──────────────────────────────────────── */
.lyrics-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  background: none;
  border: 1px solid rgba(200,194,180,0.2);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lyrics-btn:hover { color: var(--gold); border-color: rgba(212,175,55,0.4); }

#lyrics-panel {
  position: fixed;
  top: 0; right: -480px;
  width: min(460px, 100vw);
  height: 100vh;
  background: rgba(8,8,8,0.97);
  border-left: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(24px);
  z-index: 450;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease-glide);
  overflow: hidden;
}
#lyrics-panel.open { right: 0; }
.lyrics-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  flex-shrink: 0;
}
.lyrics-panel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}
.lyrics-panel-close {
  background: none;
  border: none;
  color: var(--cream-muted);
  cursor: pointer;
  font-size: 1.4rem;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.lyrics-panel-close:hover { color: var(--gold); }
.lyrics-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 28px 120px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}
.lyrics-body::-webkit-scrollbar { width: 4px; }
.lyrics-body::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 2px; }
.lyrics-verse {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 2;
  margin-bottom: 32px;
  white-space: pre-line;
}
.lyrics-section-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}
.lyrics-placeholder-note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--cream-muted);
  opacity: 0.5;
  font-style: italic;
  text-align: center;
  padding: 40px 0;
}

/* ─── Song Art Pulse When Playing ──────────────────────── */
@keyframes art-pulse {
  0%, 100% { box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.2); }
  50%       { box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(212,175,55,0.45); }
}
.song-art.is-playing {
  animation: art-float 5s ease-in-out infinite, art-pulse 2.5s ease-in-out infinite !important;
}

/* ─── Mobile responsive extras ──────────────────────────── */
@media (max-width: 768px) {
  .press-section { padding: 60px 24px; }
  .merch-grid { padding: 0 20px 60px; gap: 16px; }
  .videos-grid { padding: 0 20px 60px; gap: 16px; }
  #back-to-top { bottom: 96px; right: 14px; }
  .streaming-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 28px 16px;
  }
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
/* Only hide elements when JS is loaded and working.
   Without the js-loaded class (JS failed), content stays visible. */
html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
html.js-loaded .reveal-delay-1 { transition-delay: 0.12s; }
html.js-loaded .reveal-delay-2 { transition-delay: 0.24s; }
html.js-loaded .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Footer Redesign ───────────────────────────────────── */
footer,
.site-footer {
  padding: 64px 32px 0;
  padding-bottom: calc(var(--player-height, 80px) + 32px);
  border-top: 1px solid rgba(212,175,55,0.1);
  background: #0d0d0d;
  font-family: var(--font-ui);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto 48px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: linear-gradient(135deg, #c8a415 0%, #e8c84a 40%, #d4af37 70%, #c8a415 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(232,226,214,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.footer-streaming-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.footer-stream-link {
  color: rgba(232,226,214,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 0;
}

.footer-stream-link:hover {
  color: #d4af37;
  transform: translateY(-2px);
}

/* Nav columns */
.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.footer-nav-heading {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4af37;
  display: block;
  margin-bottom: 6px;
}

.footer-nav-col a {
  font-size: 0.82rem;
  color: rgba(232,226,214,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-nav-col a:hover {
  color: var(--cream, #e8e2d6);
}

/* Bottom bar */
.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(232,226,214,0.3);
  text-align: center;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  margin: 0;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.footer-legal-row a {
  color: rgba(232,226,214,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-row a:hover {
  color: var(--gold, #d4af37);
}

.footer-legal-sep {
  color: rgba(212,175,55,0.3);
}

/* Footer responsive */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    min-width: unset;
  }
  .footer-nav {
    gap: 32px;
  }
  .footer-nav-col {
    align-items: center;
    min-width: 100px;
  }
}

/* ─── Share Modal Upgrades ──────────────────────────────── */
.share-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(232,226,214,0.5);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.share-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
}

/* Caption copy section */
.share-captions {
  margin-bottom: 12px;
}
.share-caption-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,226,214,0.35);
  text-align: center;
  margin-bottom: 10px;
}
.share-caption-row {
  display: flex;
  gap: 10px;
}
.share-caption-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 10px;
  cursor: pointer;
  color: rgba(232,226,214,0.6);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.share-caption-btn:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.35);
  color: var(--gold);
}
.share-caption-btn.copied {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.5);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   LYRICS PANEL — Right-side drawer
   ═══════════════════════════════════════════════════════════ */

#si-lyrics-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  align-items: stretch;
  justify-content: flex-end;
}
#si-lyrics-modal.open { display: flex; }

.lyr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lyr-fade-in 0.3s ease;
}
@keyframes lyr-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ── The drawer panel ── */
.lyr-panel {
  position: relative;
  z-index: 1;
  background: #0e0e0e;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  width: 400px;
  max-width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: lyr-slide-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
  padding-bottom: var(--player-height, 80px);
  box-sizing: border-box;
}
@keyframes lyr-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* ── Top bar: badge + close ── */
.lyr-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  flex-shrink: 0;
}

.lyr-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(232, 226, 214, 0.5);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.lyr-close:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
  color: #d4af37;
}

.lyr-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}
.lyr-badge--ep     { color: #c8a415; }
.lyr-badge--single { color: #e8c84a; }

/* ── Album art — full width square ── */
.lyr-art-wrap {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.lyr-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Song meta ── */
.lyr-meta {
  flex-shrink: 0;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.lyr-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--cream, #e8e2d6);
  line-height: 1.2;
  margin: 0 0 4px;
}
.lyr-artist {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.55);
  margin: 0 0 14px;
}
.lyr-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  padding: 8px 20px;
  cursor: pointer;
  color: #d4af37;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.lyr-play-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

/* ── Divider (kept for compatibility) ── */
.lyr-divider { display: none; }

/* ── Scrollable lyrics ── */
.lyr-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px 20px 24px;
  scroll-behavior: smooth;
}
.lyr-body::-webkit-scrollbar { width: 3px; }
.lyr-body::-webkit-scrollbar-track { background: transparent; }
.lyr-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.18);
  border-radius: 2px;
}

.lyr-content { width: 100%; }

.lyr-section { margin-bottom: 28px; }
.lyr-section--first { margin-top: 0; }

.lyr-section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.45);
  margin-bottom: 10px;
}
.lyr-lines {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0rem;
  line-height: 1.9;
  color: rgba(232, 226, 214, 0.85);
  margin: 0;
}

/* Placeholder */
.lyr-placeholder { text-align: center; padding: 40px 20px; }
.lyr-placeholder-icon {
  color: rgba(212, 175, 55, 0.25);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.lyr-placeholder-icon svg { width: 28px; height: 28px; }
.lyr-placeholder-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(232, 226, 214, 0.5);
  margin: 0 0 8px;
}
.lyr-placeholder-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(232, 226, 214, 0.28);
  line-height: 1.6;
  margin: 0;
}

/* Tracklist lyrics button */
.track-lyrics-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(200, 194, 180, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.track-lyrics-btn:hover { color: #d4af37; }

/* ── Mobile: bottom sheet ── */
@media (max-width: 600px) {
  #si-lyrics-modal { align-items: flex-end; }
  .lyr-panel {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px 16px 0 0;
    animation: lyr-sheet-up 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    padding-bottom: calc(var(--player-height, 80px) + env(safe-area-inset-bottom, 0px));
  }
  @keyframes lyr-sheet-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .lyr-art-wrap { aspect-ratio: 3 / 1; }
  .lyr-title { font-size: 1.2rem; }
  .lyr-lines { font-size: 0.92rem; }
}

/* ── Site Share Button ──────────────────────────────────────── */
#site-share-btn {
  position: fixed;
  bottom: calc(var(--player-height, 80px) + 76px);
  right: 24px;
  z-index: 400;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #d4af37;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(212, 175, 55, 0);
}
#site-share-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#site-share-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(212, 175, 55, 0.25);
}

/* Site Share Popover */
#site-share-popover {
  position: fixed;
  bottom: calc(var(--player-height, 80px) + 128px);
  right: 20px;
  z-index: 401;
  background: #141414;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  animation: share-pop-in 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#site-share-popover.open { display: flex; }
@keyframes share-pop-in {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ssp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #c8c2b4;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.ssp-row:hover { background: rgba(212, 175, 55, 0.1); color: #d4af37; }
.ssp-row svg { flex-shrink: 0; }
.ssp-divider { height: 1px; background: rgba(212, 175, 55, 0.12); margin: 2px 0; }
#ssp-copy-feedback {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: #d4af37;
  text-align: center;
  padding: 2px 0 4px;
  display: none;
  letter-spacing: 0.06em;
}
