/* ═══════════════════════════════════════════════════════════
   CHOP SUE — OFFICIAL MUSIC EXPERIENCE
   Futuristic · Sleek · Best In The Universe — A++
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:       #050505;
  --bg2:      #0a0a0a;
  --bg3:      #111111;
  --bg4:      #181818;
  --red:      #e81212;
  --red2:     #ff4444;
  --red-dark: #990000;
  --red-mid:  #cc2222;
  --silver:   #cccccc;
  --silver2:  #eeeeee;
  --white:    #ffffff;
  --muted:    #666666;
  --muted2:   #444444;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(232,18,18,0.15);
  --glass:    rgba(5,5,5,0.72);
  --player-h: 88px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ══════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  position: relative; width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.loader-ring-svg {
  position: absolute; inset: 0; width: 120px; height: 120px;
  animation: loader-rot 2s linear infinite;
}
.loader-track {
  fill: none; stroke: var(--bg3); stroke-width: 3;
}
.loader-arc {
  fill: none; stroke: var(--red); stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 120 220;
  animation: loader-arc-anim 2s ease-in-out infinite;
}
@keyframes loader-rot { to { transform: rotate(360deg); } }
@keyframes loader-arc-anim {
  0%   { stroke-dashoffset: 0;   stroke: var(--red);   }
  50%  { stroke-dashoffset: -80; stroke: var(--red-dark); }
  100% { stroke-dashoffset: -160; stroke: var(--red);  }
}
.loader-text-wrap { text-align: center; }
.loader-name {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 0.3em;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.loader-sub {
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.25em; color: var(--muted); margin-top: 4px;
}
.loader-bar-outer {
  width: 200px; height: 2px; background: var(--bg3); border-radius: 2px; overflow: hidden;
}
.loader-bar-inner {
  height: 100%; width: 0%; border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.12em;
  color: var(--white);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--red);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 2px;
  font-size: 0.65rem; letter-spacing: 0.2em;
  transition: all 0.25s;
}
.nav-links .nav-cta:hover {
  background: var(--red); color: var(--bg);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-presskit {
  padding: 8px 16px;
  border: 1px solid rgba(212,175,55,0.5);
  color: #d4af37 !important;
  border-radius: 2px;
  font-size: 0.65rem; letter-spacing: 0.2em;
  transition: all 0.25s;
}
.nav-links .nav-presskit:hover {
  border-color: #d4af37;
  background: rgba(212,175,55,0.08);
  color: #f0c040 !important;
}
.nav-links .nav-presskit::after { display: none; }

.nav-links .nav-booking {
  padding: 8px 20px;
  background: #d4af37;
  color: #050505 !important;
  border-radius: 2px;
  font-size: 0.65rem; letter-spacing: 0.2em;
  font-weight: 700;
  transition: all 0.25s;
}
.nav-links .nav-booking:hover {
  background: #f0c040;
}
.nav-links .nav-booking::after { display: none; }

.nav-links .nav-insta {
  padding: 8px 16px;
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff !important;
  border-radius: 2px;
  font-size: 0.65rem; letter-spacing: 0.15em;
  transition: opacity 0.25s;
}
.nav-links .nav-insta:hover { opacity: 0.85; }
.nav-links .nav-insta::after { display: none; }

/* ── MOBILE QUICK-ACTION BAR (hidden on desktop) ── */
.nav-quick-btns {
  display: none;
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}
.nav-burger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(170,0,0,0.22) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(232,18,18,0.12) 0%, transparent 60%),
              #050505;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-glow-1, .hero-glow-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: 0.5;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(170,0,0,0.25) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: glow-float-1 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,18,18,0.2) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: glow-float-2 10s ease-in-out infinite;
}
@keyframes glow-float-1 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(60px, 40px); }
}
@keyframes glow-float-2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-40px, -50px); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 5% 120px;
  max-width: 1200px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.25em; color: var(--red);
  border: 1px solid rgba(232,18,18,0.3);
  padding: 6px 16px; border-radius: 30px;
  background: rgba(232,18,18,0.05);
  margin-bottom: 36px;
  animation: fade-up 0.8s ease 0.5s both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-title-wrap {
  line-height: 0.85;
  margin-bottom: 24px;
}
.hero-chop {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 20rem);
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow:
    0 0 80px rgba(255,255,255,0.08),
    0 0 160px rgba(255,255,255,0.04);
  animation: fade-up 0.8s ease 0.7s both;
  position: relative;
}
.hero-chop::before {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sue {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(7rem, 24vw, 28rem);
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, var(--red2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 40px rgba(232,18,18,0.5)) drop-shadow(0 0 80px rgba(170,0,0,0.3));
  animation: fade-up 0.8s ease 0.9s both, sue-pulse 4s ease-in-out infinite;
}
@keyframes sue-pulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(232,18,18,0.5)) drop-shadow(0 0 80px rgba(170,0,0,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(232,18,18,0.8)) drop-shadow(0 0 120px rgba(170,0,0,0.5)); }
}

.hero-tagline {
  font-family: var(--font-mono); font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  letter-spacing: 0.35em; color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
  animation: fade-up 0.8s ease 1.1s both;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 64px;
  animation: fade-up 0.8s ease 1.3s both;
}
.btn-play-hero {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em;
  border-radius: 3px;
  font-weight: 700;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-play-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  opacity: 0; transition: opacity 0.3s;
}
.btn-play-hero:hover::before { opacity: 1; }
.btn-play-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,18,18,0.3); }
.play-icon-wrap { position: relative; z-index: 1; }
.btn-play-hero span, .btn-play-hero svg { position: relative; z-index: 1; }
.btn-explore {
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-explore:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  animation: fade-up 0.8s ease 1.5s both;
}
.hero-stat { padding: 0 32px; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--red);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.25em; color: var(--muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fade-up 1s ease 2s both;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 6px; border-radius: 2px;
  background: var(--red);
  animation: scroll-dot-fall 2.5s ease-in-out infinite;
}
@keyframes scroll-dot-fall {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero-scroll-indicator span {
  font-family: var(--font-mono); font-size: 0.5rem;
  letter-spacing: 0.3em; color: var(--muted);
}

/* ══════════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════════ */
section {
  padding: 100px 5%;
  max-width: 1400px; margin: 0 auto;
}
.section-header {
  margin-bottom: 60px;
}
.section-tag {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.3em; color: var(--red);
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.06em; line-height: 1;
  color: var(--white);
}
.section-desc {
  font-size: 0.85rem; color: var(--muted); margin-top: 12px;
}

/* Reveal animation */
.reveal-section { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-section.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   ALBUMS GRID
══════════════════════════════════════════════ */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.album-card {
  position: relative; border-radius: 8px; overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.album-card:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border2);
}
.album-card-art {
  position: relative; aspect-ratio: 1; overflow: hidden;
}
.album-card-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.album-card:hover .album-card-art img { transform: scale(1.04); }

/* Holographic shimmer overlay */
.album-card-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%);
  background-size: 200% 200%;
  animation: holo-shimmer 4s ease-in-out infinite;
  opacity: 0; transition: opacity 0.3s;
}
.album-card:hover .album-card-art::after { opacity: 1; }
@keyframes holo-shimmer {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

.album-play-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,18,18,0.15), rgba(170,0,0,0.15));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.album-card:hover .album-play-overlay { opacity: 1; }
.album-play-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.7); transition: transform 0.3s;
  box-shadow: 0 8px 32px rgba(232,18,18,0.4);
}
.album-card:hover .album-play-circle { transform: scale(1); }
.album-play-circle svg { width: 26px; height: 26px; fill: var(--white); }

.album-card-info {
  padding: 20px;
}
.album-type-badge {
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.25em;
  padding: 3px 10px; border-radius: 2px;
  display: inline-block; margin-bottom: 10px;
}
.album-title {
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: 0.08em;
  color: var(--white); line-height: 1.1;
  margin-bottom: 8px;
}
.album-meta {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--muted); letter-spacing: 0.1em;
}
.album-glow-line {
  height: 2px;
  position: absolute; bottom: 0; left: 0; right: 0;
}

/* ══════════════════════════════════════════════
   SONGS TABLE
══════════════════════════════════════════════ */
#songs {
  padding-top: 80px; padding-bottom: 80px;
  background: rgba(232,18,18,0.08);
  border-radius: 16px;
  border: 1px solid rgba(232,18,18,0.2);
  margin-left: 2%; margin-right: 2%;
}
.filter-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 24px;
}
.filter-pill {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 7px 18px; border-radius: 30px;
  border: 1px solid var(--border2);
  color: var(--muted);
  transition: all 0.25s;
}
.filter-pill:hover, .filter-pill.active {
  background: rgba(232,18,18,0.1);
  border-color: var(--red); color: var(--red);
}
.songs-table-wrap {
  background: rgba(232,18,18,0.06);
  border: 1px solid rgba(232,18,18,0.18);
  border-radius: 10px; overflow: hidden;
}
.songs-table-header {
  display: grid;
  grid-template-columns: 50px 1fr 220px 60px 80px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--muted);
}
.song-row {
  display: grid;
  grid-template-columns: 50px 1fr 220px 60px 80px;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
  gap: 0;
}
.song-row:last-child { border-bottom: none; }
.song-row:hover { background: rgba(255,255,255,0.04); }
.song-row.playing { background: rgba(232,18,18,0.06); }

.col-num {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--muted); text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.song-num-display { display: flex; align-items: center; justify-content: center; }
.song-row:hover .num-text, .song-row.playing .num-text { display: none; }
.song-row:hover .num-play, .song-row.playing .num-play { display: block !important; }
.num-play { display: none !important; color: var(--red); }
.song-row.playing .num-text { display: none; }

/* Equalizer bars for playing track */
.eq-bars {
  display: none; align-items: flex-end; gap: 2px; height: 16px;
}
.song-row.playing .eq-bars { display: flex; }
.song-row.playing .num-play { display: none !important; }
.song-row.playing .num-text { display: none; }
.eq-bar {
  width: 3px; background: var(--red); border-radius: 1px;
  animation: eq-bounce 0.8s ease-in-out infinite;
}
.eq-bar:nth-child(1) { animation-delay: 0s; animation-duration: 0.9s; }
.eq-bar:nth-child(2) { animation-delay: 0.15s; animation-duration: 0.7s; }
.eq-bar:nth-child(3) { animation-delay: 0.3s; animation-duration: 1.0s; }
@keyframes eq-bounce {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

.col-title {
  display: flex; align-items: center; gap: 14px;
  overflow: hidden;
}
.song-art {
  width: 42px; height: 42px; border-radius: 4px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.song-title-info { overflow: hidden; }
.song-title-text {
  font-size: 0.9rem; font-weight: 600;
  color: var(--white); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.song-row.playing .song-title-text { color: var(--red); }
.song-artist-text {
  font-size: 0.72rem; color: var(--muted); margin-top: 1px;
}

.col-album {
  font-size: 0.78rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.col-dur {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--muted); text-align: right;
}
.col-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
  opacity: 0; transition: opacity 0.2s;
}
.song-row:hover .col-actions, .song-row.playing .col-actions { opacity: 1; }
.action-btn {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  transition: all 0.2s;
}
.action-btn:hover { background: var(--red); color: var(--bg); }
.action-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ══════════════════════════════════════════════
   VIDEOS GRID
══════════════════════════════════════════════ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  border-radius: 8px; overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border2);
}
.video-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.video-card:hover .video-play-btn { background: rgba(0,0,0,0.2); }
.video-play-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 8px 24px rgba(255,0,0,0.4);
}
.video-card:hover .video-play-icon { transform: scale(1); }
.video-play-icon svg { width: 22px; height: 22px; fill: white; }
.video-yt-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 2px;
}
.vevo-badge {
  background: var(--red); color: var(--white);
  font-weight: 700; letter-spacing: 0.15em;
}
.video-info { padding: 16px 18px; }
.video-title {
  font-size: 0.88rem; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.video-album-name {
  font-size: 0.72rem; color: var(--muted);
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about {
  max-width: 1400px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(170,0,0,0.06) 0%, transparent 60%),
              var(--bg2);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 80px 5%;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.06em; line-height: 1;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.5));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 14px 0 24px;
}
.about-bio {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 16px;
}
.about-bio em { color: var(--red); font-style: normal; }
.about-bio strong { color: var(--white); }
.about-stream-links { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.stream-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 30px;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em;
  border: 1px solid; transition: all 0.25s;
}
.apple-pill  { border-color: rgba(232,18,18,0.4); color: rgba(232,18,18,0.9); }
.apple-pill:hover  { background: rgba(232,18,18,0.1); }
.spotify-pill { border-color: rgba(220,220,220,0.4); color: rgba(220,220,220,0.9); }
.spotify-pill:hover { background: rgba(220,220,220,0.1); }
.youtube-pill { border-color: rgba(255,0,0,0.4); color: rgba(255,80,80,0.9); }
.youtube-pill:hover { background: rgba(255,0,0,0.1); }

.about-art-cluster { position: relative; height: 420px; }
.art-cluster-inner { position: relative; width: 100%; height: 100%; }
.cluster-img {
  position: absolute; border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: cover;
}
.c1 { width: 240px; height: 240px; top: 0; left: 0; z-index: 3; border: 2px solid rgba(232,18,18,0.2); }
.c2 { width: 200px; height: 200px; top: 60px; left: 180px; z-index: 2; border: 2px solid rgba(170,0,0,0.2); }
.c3 { width: 160px; height: 160px; top: 230px; left: 80px; z-index: 4; border: 2px solid rgba(200,200,200,0.2); }
.cluster-glow {
  position: absolute; top: 100px; left: 100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(170,0,0,0.2) 0%, transparent 70%);
  filter: blur(40px);
}

/* ══════════════════════════════════════════════
   PLATFORMS
══════════════════════════════════════════════ */
#platforms {
  max-width: 1400px; margin: 0 auto;
  padding-top: 60px; padding-bottom: 60px;
}
.platforms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plat-card {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.plat-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.3s;
}
.plat-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.plat-card:hover::before { opacity: 1; }

.apple-card::before  { background: rgba(232,18,18,0.06); }
.spotify-card::before { background: rgba(220,220,220,0.06); }
.yt-card::before     { background: rgba(255,0,0,0.06); }
.amazon-card::before { background: rgba(232,18,18,0.06); }

.plat-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plat-icon-wrap svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.apple-card .plat-icon-wrap  { background: rgba(232,18,18,0.12); }
.apple-card .plat-icon-wrap svg { fill: rgba(232,18,18,0.9); }
.spotify-card .plat-icon-wrap { background: rgba(220,220,220,0.12); }
.spotify-card .plat-icon-wrap svg { fill: rgba(220,220,220,0.9); }
.yt-card .plat-icon-wrap     { background: rgba(255,0,0,0.12); }
.yt-card .plat-icon-wrap svg { fill: rgba(255,70,70,0.9); }
.amazon-card .plat-icon-wrap { background: rgba(232,18,18,0.12); }
.amazon-card .plat-icon-wrap svg { fill: rgba(232,18,18,0.9); }

.plat-info { position: relative; z-index: 1; }
.plat-name  { display: block; font-size: 0.92rem; font-weight: 600; color: var(--white); }
.plat-action { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; color: var(--muted); margin-top: 3px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  border-top: 1px solid var(--border);
  padding: 60px 5% 120px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem; letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-size: 0.75rem; color: var(--muted); margin-bottom: 24px;
  font-family: var(--font-mono); letter-spacing: 0.1em;
}
.footer-links { display: flex; justify-content: center; gap: 32px; }
.footer-links a {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

/* ══════════════════════════════════════════════
   GLOBAL PLAYER
══════════════════════════════════════════════ */
#player {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--player-h);
  display: flex; align-items: center;
  padding: 0 24px; gap: 20px;
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(30px) saturate(200%);
  border-top: 1px solid rgba(232,18,18,0.15);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
#player.player-off { transform: translateY(100%); }

.player-left {
  display: flex; align-items: center; gap: 14px;
  width: 280px; flex-shrink: 0;
}
.player-art-wrap {
  position: relative; flex-shrink: 0;
}
#playerArt {
  width: 56px; height: 56px; border-radius: 6px;
  object-fit: cover;
}
#playerArt.spinning {
  animation: art-spin 12s linear infinite;
}
@keyframes art-spin { to { transform: rotate(360deg); } }
.player-art-ring {
  position: absolute; inset: -3px; border-radius: 9px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--red), var(--red-dark)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  animation: ring-pulse 3s ease-in-out infinite;
  opacity: 0;
}
.player-art-wrap.active .player-art-ring { opacity: 1; }
@keyframes ring-pulse {
  0%, 100% { border-width: 2px; }
  50% { border-width: 3px; }
}
.player-meta { overflow: hidden; }
.player-track-name {
  font-size: 0.88rem; font-weight: 600;
  color: var(--white); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  max-width: 200px;
}
.player-album-name {
  font-size: 0.72rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 200px; margin-top: 2px;
}

.player-center {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  min-width: 0;
}
.player-controls {
  display: flex; align-items: center; gap: 14px;
}
.ctrl-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.ctrl-btn:hover { color: var(--white); transform: scale(1.1); }
.ctrl-btn svg { width: 18px; height: 18px; fill: currentColor; }
.ctrl-play-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(232,18,18,0.3);
}
.ctrl-play-btn:hover { transform: scale(1.06); box-shadow: 0 6px 28px rgba(232,18,18,0.5); }
.ctrl-play-btn svg { width: 20px; height: 20px; fill: var(--white); }

.player-progress-row {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
}
.p-time {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--muted); flex-shrink: 0; width: 32px;
  text-align: center;
}
.p-bar {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.1);
  cursor: pointer; position: relative;
}
.p-fill {
  height: 100%; width: 0%; border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transition: width 0.2s linear;
  position: relative;
}
.p-dot {
  position: absolute; right: -5px; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s;
  box-shadow: 0 0 6px rgba(232,18,18,0.6);
}
.p-bar:hover .p-dot { transform: translateY(-50%) scale(1); }

#spectrumCanvas { image-rendering: pixelated; opacity: 0.8; }

.player-right {
  display: flex; align-items: center; gap: 16px;
  width: 260px; justify-content: flex-end; flex-shrink: 0;
}
.p-vol-row { display: flex; align-items: center; gap: 8px; }
.p-vol-row svg { fill: var(--muted); flex-shrink: 0; }
.vol-slider {
  -webkit-appearance: none; appearance: none;
  width: 80px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.12); outline: none; cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  border-radius: 50%; background: var(--white); cursor: pointer;
  box-shadow: 0 0 6px rgba(232,18,18,0.4);
}
.player-apple-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 4px;
  background: rgba(232,18,18,0.12);
  border: 1px solid rgba(232,18,18,0.3);
  color: rgba(232,18,18,0.9);
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.1em;
  transition: all 0.2s; white-space: nowrap;
}
.player-apple-btn:hover { background: rgba(232,18,18,0.2); }
.player-apple-btn svg { fill: currentColor; flex-shrink: 0; }
.preview-badge-pill {
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.12em; color: var(--red);
  border: 1px solid rgba(232,18,18,0.3);
  padding: 4px 10px; border-radius: 30px;
  animation: preview-pulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes preview-pulse {
  0%, 100% { border-color: rgba(232,18,18,0.3); color: var(--red); }
  50% { border-color: rgba(232,18,18,0.7); color: #00ffff; box-shadow: 0 0 10px rgba(232,18,18,0.2); }
}

/* ══════════════════════════════════════════════
   NEW RELEASE BANNER
══════════════════════════════════════════════ */
#newReleaseBanner {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 850;
  background: linear-gradient(90deg, #990000, #e81212, #990000);
  background-size: 200% 100%;
  animation: banner-slide 3s linear infinite;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
@keyframes banner-slide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.release-banner-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; padding: 10px 5%; flex-wrap: wrap;
}
.release-fire { font-size: 1.1rem; animation: fire-shake 0.5s ease-in-out infinite alternate; }
@keyframes fire-shake {
  from { transform: rotate(-8deg) scale(1); }
  to   { transform: rotate(8deg) scale(1.15); }
}
.release-text-block { display: flex; flex-direction: column; align-items: flex-start; }
.release-label {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.25em; color: rgba(255,255,255,0.8);
}
.release-date {
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: 0.1em; color: var(--white);
  line-height: 1;
}
.release-countdown {
  display: flex; align-items: center; gap: 6px;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 38px; }
.cd-num {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--white); line-height: 1;
}
.cd-label {
  font-family: var(--font-mono); font-size: 0.45rem;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.65);
}
.cd-sep {
  font-family: var(--font-display); font-size: 1.4rem;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
  animation: sep-blink 1s step-end infinite;
}
@keyframes sep-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.release-presave-btn {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
  padding: 8px 20px; border-radius: 2px;
  background: var(--white); color: var(--red);
  font-weight: 700; transition: all 0.2s; white-space: nowrap;
}
.release-presave-btn:hover {
  background: var(--bg); color: var(--white);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Offset hero for banner */
#hero { margin-top: 46px; }

/* ══════════════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════════════ */
#videoModal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#videoModal.vid-modal-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vid-modal-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.vid-modal-inner {
  position: relative; z-index: 2;
  width: 90%; max-width: 960px;
  background: var(--bg3);
  border: 1px solid rgba(232,18,18,0.3);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,18,18,0.2);
  animation: modal-scale 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modal-scale {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.vid-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all 0.2s;
}
.vid-modal-close:hover { background: var(--red); transform: scale(1.1); }
.vid-modal-close svg { width: 20px; height: 20px; fill: currentColor; }
.vid-modal-title {
  padding: 16px 52px 16px 20px;
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.08em; color: var(--white);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vid-modal-frame-wrap {
  position: relative; padding-top: 56.25%;
}
.vid-modal-frame-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* ── 1100px ── */
@media (max-width: 1100px) {
  .albums-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-art-cluster { height: 280px; }
  .c1 { width: 200px; height: 200px; }
  .c2 { width: 165px; height: 165px; top: 50px; left: 155px; }
  .c3 { width: 130px; height: 130px; top: 195px; left: 70px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .songs-table-header, .song-row { grid-template-columns: 44px 1fr 60px 50px; }
  .col-album { display: none; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* Nav — 2-row layout on mobile */
  #nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0 4%;
    row-gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  /* Row 1: logo + burger */
  .nav-logo { padding: 14px 0; }
  .nav-burger { display: flex; z-index: 1000; position: relative; padding: 14px 0; }

  /* Row 2: always-visible quick buttons — centered, single row */
  .nav-quick-btns {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-quick-btns::-webkit-scrollbar { display: none; }
  .nav-quick-btns a {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 0.6rem;
    letter-spacing: 0.18em; font-weight: 700;
    border-radius: 3px; white-space: nowrap;
    padding: 7px 13px; flex-shrink: 0;
    transition: opacity 0.2s, transform 0.15s;
  }
  .nav-quick-btns a:active { transform: scale(0.96); opacity: 0.85; }
  .nqb-booking {
    background: #d4af37;
    color: #050505 !important;
  }
  .nqb-insta {
    background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color: #fff !important;
  }
  .nqb-presskit {
    border: 1px solid rgba(212,175,55,0.6);
    color: #d4af37 !important;
    background: transparent;
  }
  .nqb-stream {
    border: 1px solid rgba(232,18,18,0.6);
    color: var(--red) !important;
    background: transparent;
  }

  /* Full-screen hamburger overlay */
  .nav-links { display: none; flex-direction: column; gap: 20px; }
  .nav-links.open {
    display: flex; position: fixed; inset: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center; justify-content: center; z-index: 850;
    padding: 80px 24px 60px;
    overflow-y: auto;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
  }
  /* Regular page nav links — big & bold */
  .nav-links.open a {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.85);
  }
  /* ── Button-style nav items: reset to proper mobile sizing ── */
  .nav-links.open .nav-presskit {
    font-size: 0.8rem !important;
    padding: 14px 36px !important;
    border: 1px solid rgba(212,175,55,0.6) !important;
    color: #d4af37 !important;
    border-radius: 3px;
    text-align: center;
    width: 260px;
    letter-spacing: 0.22em;
    background: transparent;
  }
  .nav-links.open .nav-booking {
    font-size: 0.8rem !important;
    padding: 14px 36px !important;
    background: #d4af37 !important;
    color: #050505 !important;
    border-radius: 3px;
    text-align: center;
    width: 260px;
    letter-spacing: 0.22em;
    font-weight: 700;
  }
  .nav-links.open .nav-insta {
    font-size: 0.8rem !important;
    padding: 14px 36px !important;
    background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important;
    color: #fff !important;
    border-radius: 3px;
    text-align: center;
    width: 260px;
    letter-spacing: 0.18em;
  }
  .nav-links.open .nav-cta {
    font-size: 0.8rem !important;
    padding: 14px 36px !important;
    border: 1px solid var(--red) !important;
    color: var(--red) !important;
    border-radius: 3px;
    text-align: center;
    width: 260px;
    letter-spacing: 0.22em;
    background: transparent;
  }

  /* Banner: push down to clear taller mobile nav (~108px) */
  #newReleaseBanner { top: 108px; }
  /* Hero: extra top padding to clear nav + banner */
  .hero-content { padding-top: 160px; }

  /* Layout */
  .albums-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }

  /* Songs */
  #songs { margin-left: 0; margin-right: 0; border-radius: 0; border-left: none; border-right: none; }
  .songs-table-header, .song-row { grid-template-columns: 44px 1fr 50px; }
  .col-dur { display: none; }

  /* Player */
  .player-right { display: none; }
  .player-left { width: auto; flex: 1; min-width: 0; }
  #player { padding: 0 16px; gap: 12px; }

  /* About cluster */
  .about-art-cluster { height: 240px; }
  .c1 { width: 170px; height: 170px; top: 0; left: 0; }
  .c2 { width: 140px; height: 140px; top: 45px; left: 130px; }
  .c3 { width: 110px; height: 110px; top: 160px; left: 55px; }
}

/* ── 640px — BANNER COMPACT ── */
@media (max-width: 640px) {
  .release-banner-inner { gap: 6px 14px; padding: 7px 4%; justify-content: center; flex-wrap: wrap; }
  .release-fire { font-size: 0.85rem; }
  .release-label { font-size: 0.48rem; letter-spacing: 0.18em; }
  .release-date { font-size: 0.88rem; letter-spacing: 0.06em; }
  .cd-num { font-size: 1.4rem; }
  .cd-label { font-size: 0.45rem; }
  .cd-sep { font-size: 1.4rem; margin-bottom: 5px; }
  .release-presave-btn { font-size: 0.58rem; padding: 6px 13px; }
}

/* ── 480px — PHONES ── */
@media (max-width: 480px) {
  /* Sections */
  section { padding: 60px 4%; }

  /* Banner — 2 rows on phones: song title + countdown on row 1, presave on row 2 */
  .release-fire { display: none; }
  .release-label { display: block; font-size: 0.6rem; letter-spacing: 0.18em; font-weight: 700; }
  .release-text-block { align-items: center; text-align: center; }
  .release-banner-inner { gap: 6px 12px; flex-wrap: wrap; padding: 8px 4%; justify-content: center; }
  .release-date { font-size: 0.82rem; letter-spacing: 0.08em; }
  .release-countdown { gap: 6px; }
  .cd-num { font-size: 1.4rem; }
  .cd-label { font-size: 0.45rem; }
  .cd-sep { font-size: 1.4rem; margin-bottom: 8px; }
  .release-presave-btn {
    font-size: 0.68rem; padding: 10px 22px;
    white-space: nowrap; min-height: 38px;
    display: flex; align-items: center; justify-content: center;
    width: 100%; max-width: 280px; border-radius: 4px;
  }
  /* Banner now ~2 rows ≈ 72px tall — offset hero (nav 108px + banner 72px = 180px) */
  #hero { margin-top: 72px; }
  .hero-content { padding-top: 115px; }

  /* Hero */
  .hero-content { padding: 90px 4% 80px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-play-hero, .btn-explore { width: 100%; justify-content: center; text-align: center; }
  .hero-stat { padding: 0 18px; }
  .stat-num { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Songs */
  #songs { padding: 50px 4%; }
  .songs-table-header, .song-row { grid-template-columns: 36px 1fr; padding: 8px 12px; }
  .col-actions { display: none; }
  .song-art { width: 36px; height: 36px; border-radius: 3px; }
  .song-title-text { font-size: 0.82rem; }
  .song-artist-text { font-size: 0.62rem; }
  .filter-pill { font-size: 0.57rem; padding: 6px 13px; }

  /* Albums */
  .album-card-info { padding: 14px; }
  .album-title { font-size: 1.1rem; }

  /* Videos — 1 col */
  .videos-grid { grid-template-columns: 1fr; }

  /* Platforms — 1 col */
  .platforms-grid { grid-template-columns: 1fr; }

  /* About */
  .about-name { font-size: clamp(2.5rem, 10vw, 5rem); }
  .about-stream-links { gap: 8px; }
  .stream-pill { font-size: 0.6rem; padding: 8px 14px; }
  .about-art-cluster { height: 200px; }
  .c1 { width: 145px; height: 145px; }
  .c2 { width: 115px; height: 115px; top: 38px; left: 110px; }
  .c3 { width: 90px;  height: 90px;  top: 135px; left: 45px; }

  /* Player — compact, keep controls visible */
  #player { height: auto; min-height: 68px; padding: 8px 14px; gap: 8px; flex-wrap: nowrap; }
  .player-left { gap: 10px; }
  #playerArt { width: 42px; height: 42px; border-radius: 5px; }
  .player-track-name { font-size: 0.78rem; max-width: 130px; }
  .player-album-name { display: none; }
  .player-center { min-width: 0; }
  .player-progress-row { display: none; }
  #spectrumCanvas { display: none; }
  .ctrl-play-btn { width: 38px; height: 38px; }
  .ctrl-btn { width: 28px; height: 28px; }
  .ctrl-btn svg { width: 14px; height: 14px; }
  .ctrl-play-btn svg { width: 17px; height: 17px; }

  /* Modal */
  .vid-modal-inner { width: 96%; }
  .vid-modal-title { font-size: 0.9rem; padding: 12px 44px 12px 14px; }

  /* Footer */
  #footer { padding: 40px 4% 100px; }
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ── 380px — SMALL PHONES ── */
@media (max-width: 380px) {
  .hero-badge { font-size: 0.52rem; padding: 5px 10px; }
  .stat-num { font-size: 1.3rem; }
  .hero-stat { padding: 0 12px; }
  .section-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .filter-pill { font-size: 0.52rem; padding: 5px 10px; }
  .songs-table-header, .song-row { padding: 7px 10px; }
  .song-art { width: 32px; height: 32px; }
  .song-title-text { font-size: 0.75rem; }
  .player-track-name { max-width: 100px; font-size: 0.72rem; }
  #playerArt { width: 36px; height: 36px; }
  .ctrl-btn { width: 24px; height: 24px; }
  .ctrl-play-btn { width: 34px; height: 34px; }
  .release-label { font-size: 0.54rem; }
  .release-date { font-size: 0.7rem; }
  .release-presave-btn { font-size: 0.6rem; padding: 9px 18px; }
}

/* ════════════════════════════════════════════════════
   MOBILE PARITY — SAME EXPERIENCE ON ALL DEVICES
   Desktop features fully ported to mobile
════════════════════════════════════════════════════ */

/* ── Show 30s PREVIEW badge on mobile (player-right was display:none at 768px) ── */
@media (max-width: 768px) {
  .player-right {
    display: flex !important;
    align-items: center;
    padding: 0 4px;
    gap: 0;
  }
  /* Hide non-essential player-right children on mobile */
  .player-right > canvas,
  .player-right .p-vol-row,
  .player-right .player-apple-btn { display: none !important; }
  /* Keep 30s PREVIEW badge visible */
  .preview-badge-pill {
    font-size: 0.48rem;
    padding: 3px 8px;
    letter-spacing: 0.12em;
  }
}

/* ── Show progress bar on mobile (was display:none at 480px) ── */
@media (max-width: 480px) {
  .player-progress-row {
    display: flex !important;
    gap: 4px;
  }
  .p-time { font-size: 0.52rem; }
  .p-bar { height: 3px; }
}

/* ── Restore Apple Music link on song rows on mobile ── */
@media (max-width: 480px) {
  .songs-table-header,
  .song-row { grid-template-columns: 36px 1fr 30px !important; }
  .col-actions {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .col-actions .action-btn { width: 26px; height: 26px; padding: 0; }
  .col-actions .action-btn svg { width: 14px; height: 14px; }
}

/* ── OWYF "OUTSIDE WITH YOUR FRIENDS" title: tighten on small screens ── */
@media (max-width: 600px) {
  #owyfSpotlight .ptpu-title-text {
    font-size: clamp(1.9rem, 9vw, 3.2rem) !important;
    line-height: 0.9;
  }
  /* Countdown badge wrap */
  #owyfCountdownBadge {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 380px) {
  #owyfSpotlight .ptpu-title-text {
    font-size: clamp(1.5rem, 8vw, 2.2rem) !important;
  }
}

/* ── Album name in player: show on mobile ── */
@media (max-width: 480px) {
  .player-album-name { display: block !important; font-size: 0.6rem; }
}

/* ── Ensure touch tap targets are large enough across all spotlight sections ── */
@media (max-width: 900px) {
  .ptpu-art-frame,
  .on-art-img-wrap,
  .nly-art-frame { min-height: 200px; }
  .ptpu-play-circle { width: 56px; height: 56px; }
  .ptpu-play-circle svg { width: 24px; height: 24px; }
}
