/* ============================================
   MICHAEL JACKSON TRIBUTE — STYLES
   Palette: Noir Black · Gold · Ivory · Crimson
   Fonts: Cormorant Garamond + Outfit
   ============================================ */

:root {
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --ivory: #F5F0E8;
  --ivory-2: #E8E0D0;
  --white: #FFFFFF;
  --crimson: #8B1A1A;
  --crimson-light: #C0392B;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; }

/* ============ PARTICLE CANVAS ============ */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mj {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--black-2);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right var(--transition-slow);
}

.mobile-menu.open { right: 0; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SECTION LABELS ============ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.section-label.light { color: var(--gold-light); }

/* ============ SECTION TITLES ============ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.centered { text-align: center; }

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 4rem;
}

.hero-spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 800px;
  background: radial-gradient(ellipse at top, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: spotlightPulse 4s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.hero-title-line {
  display: block;
  color: var(--ivory);
  letter-spacing: -0.02em;
}

.hero-title-gold {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 2rem;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ivory-2);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left var(--transition);
  z-index: -1;
}

.hero-cta:hover { color: var(--black); }
.hero-cta:hover::before { left: 0; }

/* Hero Silhouette */
.hero-silhouette {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.silhouette-figure {
  width: 380px;
  height: 580px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Michael_Jackson_in_1988.jpg/400px-Michael_Jackson_in_1988.jpg') center/cover no-repeat;
  mask-image: linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%);
  opacity: 0.25;
  filter: grayscale(100%) contrast(1.2);
  animation: silhouetteFade 3s ease-in-out infinite alternate;
}

@keyframes silhouetteFade {
  0% { opacity: 0.2; }
  100% { opacity: 0.35; }
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============ LEGACY SECTION ============ */
.legacy {
  padding: 8rem 4rem;
  position: relative;
  z-index: 1;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
  margin-top: 2rem;
}

.legacy-intro { position: sticky; top: 8rem; }

.legacy-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ivory-2);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.legacy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.legacy-card {
  background: var(--black-2);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.legacy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--transition-slow);
}

.legacy-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--black-3);
  transform: translateY(-4px);
}

.legacy-card:hover::before { height: 100%; }

.legacy-card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.legacy-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.legacy-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
}

.legacy-card p em { color: var(--gold); font-style: italic; }

/* ============ DISCOGRAPHY SECTION ============ */
.discography {
  padding: 8rem 4rem;
  background: var(--black-2);
  position: relative;
  z-index: 1;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.album-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
}

.album-card.featured {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
}

.album-badge {
  position: absolute;
  top: 1rem; left: 0;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  z-index: 2;
}

.album-art {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.album-vinyl {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1a1a1a 30%, #0a0a0a 31%, #0a0a0a 45%, #1a1a1a 46%, #0a0a0a 60%, #1a1a1a 61%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinylSpin 8s linear infinite;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
  transition: animation-duration 0.3s;
}

.album-card:hover .album-vinyl { animation-duration: 2s; }

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vinyl-label {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  animation: vinylSpin 8s linear infinite reverse;
}

.vinyl-label.gold {
  background: var(--gold-dark);
  color: var(--gold-light);
}

.album-info {
  padding: 1.5rem;
}

.album-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.album-year {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.album-info p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.album-rating {
  display: flex;
  gap: 4px;
}

.rating-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black-4);
  border: 1px solid var(--gray);
}

.rating-dot.filled { background: var(--ivory-2); border-color: var(--ivory-2); }
.rating-dot.filled.gold { background: var(--gold); border-color: var(--gold); }

/* ============ TIMELINE SECTION ============ */
.timeline-section {
  padding: 8rem 4rem;
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3) 10%, rgba(201, 168, 76, 0.3) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item[data-side="left"] {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item[data-side="right"] {
  flex-direction: row;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black-3);
  border: 2px solid rgba(201, 168, 76, 0.5);
  transform: translateX(-50%);
  z-index: 2;
  transition: border-color var(--transition), background var(--transition);
}

.timeline-dot.gold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
}

.timeline-content {
  width: calc(50% - 2rem);
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  transition: border-color var(--transition);
}

.timeline-content.gold-border {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.timeline-item:hover .timeline-content { border-color: rgba(201, 168, 76, 0.25); }

.timeline-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-year.gold { color: var(--gold); }

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ============ BIOPIC SECTION ============ */
.biopic {
  position: relative;
  padding: 8rem 4rem;
  overflow: hidden;
  z-index: 1;
}

.biopic-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    var(--black-2);
  z-index: 0;
}

.biopic-content {
  position: relative;
  z-index: 1;
}

.biopic-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.biopic-badge {
  display: inline-block;
  background: var(--crimson);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.biopic-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ivory-2);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.biopic-text strong { color: var(--gold); font-weight: 500; }
.biopic-text em { color: var(--ivory); font-style: italic; }

.biopic-cast h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.cast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cast-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.cast-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
}

.cast-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Biopic Poster */
.biopic-poster { position: sticky; top: 8rem; }

.poster-frame {
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 3px;
  margin-bottom: 2rem;
}

.poster-inner {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
  padding: 3rem 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.poster-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}

.poster-title-block {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  position: relative;
  z-index: 1;
}

.poster-m {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.poster-ichael {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.3em;
  line-height: 1;
}

.poster-silhouette-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 1rem 0;
}

.poster-silhouette {
  width: 80px;
  height: 160px;
  background: var(--ivory);
  clip-path: polygon(
    40% 0%, 60% 0%, 65% 8%, 70% 20%, 68% 30%, 72% 35%, 85% 30%, 90% 35%, 80% 45%, 70% 42%, 68% 55%, 75% 70%, 80% 85%, 75% 100%, 65% 100%, 60% 80%, 55% 65%, 50% 55%, 45% 65%, 40% 80%, 35% 100%, 25% 100%, 20% 85%, 25% 70%, 32% 55%, 30% 42%, 20% 45%, 10% 35%, 15% 30%, 28% 35%, 32% 30%, 30% 20%, 35% 8%
  );
  opacity: 0.15;
  animation: posterGlow 3s ease-in-out infinite alternate;
}

@keyframes posterGlow {
  0% { opacity: 0.1; filter: blur(0px); }
  100% { opacity: 0.25; filter: blur(1px); }
}

.poster-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ivory-2);
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.poster-credits {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.biopic-box-office {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
}

.bo-stat {
  background: var(--black-3);
  padding: 1.2rem 1rem;
  text-align: center;
}

.bo-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bo-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ============ QUOTES SECTION ============ */
.quotes {
  padding: 8rem 4rem;
  background: var(--black-2);
  position: relative;
  z-index: 1;
  text-align: center;
}

.quotes-carousel {
  max-width: 800px;
  margin: 4rem auto 3rem;
  min-height: 200px;
  position: relative;
}

.quote-slide {
  display: none;
  animation: quoteFade 0.6s ease;
}

.quote-slide.active { display: block; }

@keyframes quoteFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.quote-slide blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.15);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-display);
  line-height: 1;
}

.quote-slide cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.quote-btn {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: none;
  transition: background var(--transition), border-color var(--transition);
}

.quote-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.quote-dots {
  display: flex;
  gap: 8px;
}

.quote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  cursor: none;
  transition: background var(--transition), transform var(--transition);
}

.quote-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 4rem 4rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-mj {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

.footer-tagline { text-align: right; }

.footer-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ivory-2);
  margin-bottom: 1rem;
}

.footer-glove {
  font-size: 2rem;
  text-align: right;
  animation: gloveFloat 3s ease-in-out infinite;
}

@keyframes gloveFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}

.footer-copy { margin-top: 0.5rem; color: rgba(136, 136, 136, 0.5); }

/* ============ TYPEWRITER — FULL WIDTH CURSIVE ============ */
.hero-title-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 1;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  padding: 0 2vw;
  margin-bottom: 1.5rem;
}

.tw-fullname {
  background: linear-gradient(90deg, var(--ivory) 0%, var(--gold) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tw-cursor-inline {
  display: inline-block;
  width: 4px;
  height: 0.75em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: twBlink 0.7s step-end infinite;
}

.tw-cursor-inline.hidden { display: none; }

@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============ ROUNDED EDGES — GLOBAL ============ */
.legacy-card          { border-radius: 20px; }
.album-card           { border-radius: 20px; }
.album-art            { border-radius: 20px 20px 0 0; }
.timeline-content     { border-radius: 16px; }
.biopic-badge         { border-radius: 30px; }
.cast-item            { border-radius: 12px; }
.poster-frame         { border-radius: 24px; }
.poster-inner         { border-radius: 22px; }
.bo-stat              { border-radius: 0; }
.biopic-box-office    { border-radius: 16px; overflow: hidden; }
.hero-cta             { border-radius: 50px; }
.quote-btn            { border-radius: 50%; }
.mobile-menu          { border-radius: 24px 0 0 24px; }
.album-badge          { border-radius: 0 0 12px 0; }
.nav                  { border-radius: 0 0 20px 20px; }
.nav.scrolled         { border-radius: 0 0 20px 20px; }
.footer               { border-radius: 32px 32px 0 0; }
.section-label        { border-radius: 30px; }
.stat                 { border-radius: 12px; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ SELECTION ============ */
::selection { background: rgba(201, 168, 76, 0.3); color: var(--ivory); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .legacy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .legacy-intro { position: static; }
  .albums-grid { grid-template-columns: repeat(2, 1fr); }
  .biopic-grid { grid-template-columns: 1fr; }
  .biopic-poster { position: static; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 0 1.5rem; }
  .hero-silhouette { display: none; }
  .hero-scroll-hint { left: 1.5rem; }

  .legacy { padding: 5rem 1.5rem; }
  .legacy-cards { grid-template-columns: 1fr; }

  .discography { padding: 5rem 1.5rem; }
  .albums-grid { grid-template-columns: 1fr; }

  .timeline-section { padding: 5rem 1.5rem; }
  .timeline::before { left: 1rem; }
  .timeline-item { flex-direction: column !important; text-align: left !important; padding-left: 3rem; }
  .timeline-dot { left: 1rem; }
  .timeline-content { width: 100%; }

  .biopic { padding: 5rem 1.5rem; }
  .cast-grid { grid-template-columns: 1fr; }
  .biopic-box-office { grid-template-columns: 1fr; }

  .quotes { padding: 5rem 1.5rem; }

  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { flex-direction: column; gap: 2rem; text-align: center; }
  .footer-tagline { text-align: center; }
  .footer-glove { text-align: center; }

  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 15vw, 5rem); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .poster-inner { padding: 2rem 1rem; }
  .biopic-box-office { grid-template-columns: repeat(3, 1fr); }
}