:root {
  --bg: #0d0221;
  --bg-alt: #170b34;
  --fg: #fdf6ff;
  --fg-muted: #b9a9e8;
  --pink: #ff2e93;
  --purple: #7b2ff7;
  --cyan: #00e5ff;
  --yellow: #ffd93d;
  --accent: var(--pink);
  --border: #2c1a52;
  --radius: 10px;
  --max-width: 1140px;
  --font-display: 'Unbounded', 'Raleway', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-divine: 'Fraunces', serif;
  --font-style-script: 'Kaushan Script', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 3000;
  padding: 12px 20px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--pink) var(--bg-alt);
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink), var(--purple), var(--cyan));
  border-radius: 6px;
  border: 2px solid var(--bg-alt);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--cyan), var(--purple), var(--pink)); }

/* Cross-page navigation transitions (progressive enhancement, no-op on
   unsupported browsers) */
::view-transition-old(root) {
  animation: dsm-fade-out 0.35s ease forwards;
}

::view-transition-new(root) {
  animation: dsm-fade-in 0.4s ease forwards;
}

@keyframes dsm-fade-out {
  to { opacity: 0; transform: scale(0.98); filter: blur(8px); }
}

@keyframes dsm-fade-in {
  from { opacity: 0; transform: scale(1.02); filter: blur(8px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) {
    animation: none;
  }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grainShift 1s steps(4) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255, 46, 147, 0.55)); }
  50% { filter: drop-shadow(0 0 32px rgba(0, 229, 255, 0.6)); }
}

@keyframes bounceCue {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

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

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

/* Site-wide scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  box-shadow: 0 0 8px rgba(255, 46, 147, 0.6);
  transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 2, 33, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  min-height: 72px;
  padding: 14px 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  perspective: 800px;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transform-style: preserve-3d;
  animation: logoSway 6s ease-in-out infinite;
}

@keyframes logoSway {
  0%, 100% { transform: rotateY(-16deg) rotateX(4deg); }
  50% { transform: rotateY(16deg) rotateX(-4deg); }
}

@keyframes logoSpin3D {
  0% { transform: rotateY(0deg) scale(1); filter: drop-shadow(0 0 0 rgba(255, 46, 147, 0)); }
  50% { transform: rotateY(180deg) scale(1.18); filter: drop-shadow(0 0 16px rgba(255, 46, 147, 0.85)); }
  100% { transform: rotateY(360deg) scale(1); filter: drop-shadow(0 0 0 rgba(255, 46, 147, 0)); }
}

.logo-img.logo-spin { animation: logoSpin3D 0.7s ease; }

.logo span {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--pink));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.main-nav a {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s;
  padding-bottom: 4px;
  white-space: nowrap;
}

.main-nav a.active {
  color: var(--fg);
}

.main-nav a.active::after {
  width: 100%;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--fg);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-link-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.1;
}

.nav-link-stacked .nav-sub {
  font-size: 0.52rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
  color: var(--fg-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -24px;
  background: linear-gradient(160deg, #0d0221 0%, #1a0940 50%, #0d0221 100%);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: floatBlob 16s ease-in-out infinite;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 420px; height: 420px;
  top: -10%; left: -5%;
  background: radial-gradient(circle, var(--pink), transparent 70%);
}

.blob-2 {
  width: 480px; height: 480px;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  animation-delay: -6s;
}

.blob-3 {
  width: 360px; height: 360px;
  top: 30%; left: 55%;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  animation-delay: -11s;
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-sparkle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: sparkleFloat var(--duration, 9s) ease-in infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes sparkleFloat {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  12% { opacity: 0.9; }
  85% { opacity: 0.4; }
  100% { transform: translate(var(--drift, 0px), -280px) scale(1); opacity: 0; }
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.12), transparent 38%);
  mix-blend-mode: screen;
  filter: brightness(calc(1 + var(--music-energy, 0) * 0.9));
}

/* Site-wide: headings and the sparkle particles breathe gently with the
   currently-playing track (via --music-energy, updated from the audio
   widget's analyser). Silent/idle state settles the variable back to 0. */
.glow-text {
  transform: scale(calc(1 + var(--music-energy, 0) * 0.018));
}

.hero-sparkle {
  filter: drop-shadow(0 0 calc(1px + var(--music-energy, 0) * 5px) rgba(255, 255, 255, 0.9));
}

@media (prefers-reduced-motion: reduce) {
  .hero-sparkle { display: none; }
  .hero-spotlight { display: none; }
  .glow-text { transform: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
}

.eyebrow {
  color: var(--yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 24px;
}

.glow-text {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--yellow), var(--pink));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite, glowPulse 5s ease-in-out infinite;
}

.artist-name-main {
  display: block;
  font-size: clamp(3.4rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

/* "divine" / "Style" brand wordmark — thin spaced sans + manuscript script,
   stacked like the real logo mark instead of the old overlapping orbit */
.hero-title-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4px;
}

.hero-word {
  position: relative;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(22px);
  animation: heroWordIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-divine {
  font-family: var(--font-divine);
  font-weight: 900;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(3.6rem, 9.6vw, 6.4rem);
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--pink));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroWordIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards, gradientShift 5s ease-in-out infinite, sparkleGlowDivine 5s ease-in-out infinite;
  animation-delay: 0.05s, 1s, 1s;
}

.brand-style {
  font-family: var(--font-style-script);
  font-weight: 400;
  line-height: 1;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  margin-top: -0.2em;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroWordIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards, gradientShift 5s ease-in-out infinite, sparkleGlowStyle 5s ease-in-out infinite;
  animation-delay: 0.3s, 1.3s, 1.3s;
}

.brand-music {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  font-size: clamp(1.5rem, 4.2vw, 2.3rem);
  margin-top: 0.08em;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--cyan));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroWordIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards, gradientShift 5s ease-in-out infinite, sparkleGlowMusic 5s ease-in-out infinite;
  animation-delay: 0.5s, 1.5s, 1.5s;
}

@keyframes sparkleGlowDivine {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 46, 147, 0)); }
  50% { filter: drop-shadow(0 0 22px rgba(255, 46, 147, 0.65)); }
}

@keyframes sparkleGlowStyle {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(0, 229, 255, 0)); }
  50% { filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.65)); }
}

@keyframes sparkleGlowMusic {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 217, 61, 0)); }
  50% { filter: drop-shadow(0 0 22px rgba(255, 217, 61, 0.65)); }
}

@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-word { opacity: 1; transform: none; animation: none; }
}

.artist-name-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 14px;
}

.artist-name-sub.accent-yellow {
  color: var(--yellow);
  -webkit-text-fill-color: var(--yellow);
  background: none;
  animation: none;
}

.hero-tagline {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--fg-muted);
  border-radius: 20px;
  z-index: 1;
}

.scroll-cue span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 7px auto 0;
  background: var(--cyan);
  border-radius: 50%;
  animation: bounceCue 1.6s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.3s, background-position 0.4s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  background-size: 200% 100%;
  color: #0d0221;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255, 46, 147, 0.45);
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.55);
}

.btn-outline {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Section headings: reveal word by word instead of as one block */
h2.reveal.word-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

h2.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.bio-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--pink), var(--purple) 50%, var(--cyan));
  position: relative;
}

.bio-image::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 4px);
  background: var(--bg-alt);
  opacity: 0.15;
}

.bio-text p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  max-width: 60ch;
}

.socials {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-top: 24px;
  flex-wrap: wrap;
}

.socials a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.socials a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Player */
.player {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.track-list {
  list-style: none;
}

.track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.track:last-child { border-bottom: none; }

.track:hover {
  background: linear-gradient(90deg, rgba(255, 46, 147, 0.1), rgba(0, 229, 255, 0.06));
}

.track.playing {
  background: linear-gradient(90deg, rgba(255, 46, 147, 0.16), rgba(123, 47, 247, 0.12));
}

.track-play {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--fg-muted);
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.track-play .bar {
  width: 3px;
  height: 12px;
  background: var(--fg);
  border-radius: 2px;
  transform: scaleY(0.4);
  transition: background 0.2s;
}

.track-play .bar:nth-child(1) { transform: scaleY(0.7); }
.track-play .bar:nth-child(2) { transform: scaleY(1); }
.track-play .bar:nth-child(3) { transform: scaleY(0.5); }

.track:not(.playing) .track-play .bar {
  animation: none;
}

.track.playing .track-play {
  border-color: var(--pink);
  box-shadow: 0 0 14px rgba(255, 46, 147, 0.5);
}

.track.playing .track-play .bar {
  background: linear-gradient(180deg, var(--pink), var(--cyan));
  animation: eqBar 0.9s ease-in-out infinite;
}

.track.playing .track-play .bar:nth-child(1) { animation-delay: -0.6s; }
.track.playing .track-play .bar:nth-child(2) { animation-delay: -0.3s; }
.track.playing .track-play .bar:nth-child(3) { animation-delay: 0s; }

.track-info {
  display: flex;
  justify-content: space-between;
  flex: 1;
  align-items: baseline;
}

.track-title { font-size: 1rem; }
.track-duration { color: var(--fg-muted); font-size: 0.85rem; }

.now-playing {
  padding: 18px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  border-radius: 3px;
}

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.now-playing-title { color: var(--fg); }

/* Shop */
.shop-note {
  color: var(--fg-muted);
  max-width: 70ch;
  margin-bottom: 48px;
  font-size: 0.9rem;
}

.shop-note code {
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
  color: var(--cyan);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-alt);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--pink);
  box-shadow: 0 16px 32px rgba(255, 46, 147, 0.2);
}

.product-card:nth-child(4n+2):hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 229, 255, 0.2);
  transform: translateY(-8px) rotate(1deg);
}

.product-card:nth-child(4n+3):hover {
  border-color: var(--purple);
  box-shadow: 0 16px 32px rgba(123, 47, 247, 0.25);
}

.product-image {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
  background-size: 200% 200%;
  margin-bottom: 16px;
  transition: background-position 0.6s ease;
}

.product-card:hover .product-image {
  background-position: 100% 100%;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-price {
  color: var(--yellow);
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-grid p {
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.contact-email a {
  color: var(--pink);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.contact-email a:hover {
  color: var(--cyan);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--fg);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 46, 147, 0.15);
}

.contact-form button {
  align-self: flex-start;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.newsletter-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.newsletter-text { max-width: 440px; }

.newsletter-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.newsletter-sub {
  color: var(--fg-muted);
  font-size: 0.88rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  min-width: 240px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
}

.newsletter-feedback {
  width: 100%;
  color: var(--cyan);
  font-size: 0.82rem;
  margin-top: 4px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-inner .socials { margin-top: 0; }

/* Responsive */
@media (max-width: 860px) {
  .bio-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.25s, visibility 0s linear 0.25s;
    visibility: hidden;
  }

  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.25s;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Marquee ticker */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

.marquee-track span.accent {
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
}

.page-hero .hero-bg {
  background: linear-gradient(160deg, #0d0221 0%, #1a0940 60%, #0d0221 100%);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-logo-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1);
  margin-bottom: 24px;
}

.page-hero-lede {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 55ch;
}

.page-hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 46, 147, 0.35), rgba(0, 229, 255, 0.25));
  mix-blend-mode: color;
}

.page-hero-image.is-cover {
  aspect-ratio: 1 / 1;
}

.page-hero-image.is-cover img {
  filter: none;
}

.page-hero-image.is-cover::after {
  display: none;
}

/* Large hero photo, near full page (home, bio) */
.hero-content.page-hero-grid,
.page-hero-grid.wide-photo {
  max-width: 1600px;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 32px;
}

.hero-image-xl {
  aspect-ratio: auto;
  height: 88vh;
  max-height: 980px;
  width: 100%;
}

.hero-image-xl img,
.hero-image-xl video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Square cover art: keep the box 1:1 so the artwork (title text baked into
   the image) is never cropped by object-fit: cover */
.hero-image-xl.is-cover {
  height: auto;
  max-height: 980px;
  aspect-ratio: 1 / 1;
}

/* Home hero video: smaller box than the full-bleed photo treatment, so the
   source resolution isn't stretched/upscaled and stays sharp */
.hero-image-xl.hero-video-box {
  height: 62vh;
  max-height: 680px;
}

.hero-video-poster { display: none; }

/* Retro TV frame around the home hero video */
.tv-frame {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 26px;
  background: linear-gradient(155deg, #34343f 0%, #17171f 55%, #0a0a10 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 34px;
}

.tv-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.06) 42%, transparent 58%);
  pointer-events: none;
}

.tv-frame .tv-screen {
  box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.65), 0 0 0 3px #050508;
  margin-bottom: 0;
}

.tv-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.08) 3px);
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.tv-channel-bug {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(10, 2, 24, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.tv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: tvDotPulse 1.6s ease-in-out infinite;
}

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

.tv-stand {
  position: relative;
  width: 130px;
  height: 24px;
  margin: 0 auto;
  background: linear-gradient(180deg, #22222b, #0a0a10);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 22px rgba(0, 0, 0, 0.45);
}

.tv-stand::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 190px;
  height: 10px;
  background: linear-gradient(180deg, #0a0a10, #000);
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-xl video { display: none; }
  .hero-image-xl .hero-video-poster { display: block; }
}

/* Featured track (video pochette) */
.featured-track {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  padding: 24px;
  margin-bottom: 32px;
}

.featured-track-video {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.featured-track-video video,
.featured-track-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.featured-track-info {
  flex: 1;
  min-width: 220px;
}

.featured-track-label {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.featured-track-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.featured-track-info p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Video clip player */
.video-player-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
}

.tv-frame .video-player-wrap {
  max-width: none;
}

.yt-custom-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  background-size: cover;
  background-position: center;
}

.yt-custom-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YouTube still shows its own title bar and "more videos" suggestion when
   the embed is paused, even with the native controls hidden. These scrims
   sit above the iframe to block that chrome so only our own UI shows. */
.yt-custom-scrim-top,
.yt-custom-scrim-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yt-custom-player.is-loaded .yt-custom-scrim-top,
.yt-custom-player.is-loaded .yt-custom-scrim-bottom {
  opacity: 1;
}

.yt-custom-scrim-top {
  top: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(5, 1, 15, 0.8), transparent);
}

.yt-custom-scrim-bottom {
  bottom: 0;
  height: 64px;
  background: rgba(5, 1, 15, 0.97);
}

.yt-custom-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 4;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(255, 46, 147, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.yt-custom-playbtn svg {
  margin-left: 4px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}

.yt-custom-playbtn-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: ytPlayPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.yt-custom-playbtn-ring:nth-child(2) { animation-delay: 1.2s; }

@keyframes ytPlayPulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.yt-custom-playbtn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 50px rgba(255, 46, 147, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.yt-custom-playbtn:active { transform: translate(-50%, -50%) scale(0.96); }

.yt-custom-player.is-playing .yt-custom-playbtn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .yt-custom-playbtn-ring { display: none; }
}

.yt-custom-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.yt-custom-player.is-loaded .yt-custom-controls {
  opacity: 1;
  pointer-events: auto;
}

.yt-custom-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.yt-custom-btn:hover { color: var(--pink); transform: scale(1.15); }

.yt-custom-player:fullscreen,
.yt-custom-player:-webkit-full-screen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-custom-player:fullscreen .yt-custom-aspect,
.yt-custom-player:-webkit-full-screen .yt-custom-aspect {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}

.yt-custom-progress {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  overflow: hidden;
}

.yt-custom-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.yt-custom-time {
  font-size: 0.72rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.video-player-wrap video {
  width: 100%;
  display: block;
  background: #000;
}

.video-player-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.video-credits {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* YouTube video library grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.yt-card {
  display: block;
  color: var(--fg);
  transition: transform 0.3s ease;
}

.yt-card:hover {
  transform: translateY(-6px);
}

.yt-thumb-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.2s;
}

.yt-play-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}

.yt-card:hover .yt-play-icon {
  background: var(--pink);
}

.yt-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.yt-card h3 {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.featured-tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.featured-tracks .featured-track {
  margin-bottom: 0;
  height: 100%;
}

.featured-track-cover {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.featured-track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prose {
  color: var(--fg-muted);
  max-width: 75ch;
}

.prose p {
  margin-bottom: 20px;
}

.prose strong {
  color: var(--fg);
}

/* Value grid (positionnement / défi / valeurs) */
/* Key stats (home) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.news-grid .film-card {
  max-width: none;
  margin-top: 0;
}

.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg-alt);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.value-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.16), rgba(0, 229, 255, 0.12));
  color: var(--pink);
}

.pillar-icon svg { width: 22px; height: 22px; }

.culture-strip {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.culture-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.culture-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 217, 61, 0.12);
  color: var(--yellow);
}

.culture-icon svg { width: 18px; height: 18px; }

.culture-caption {
  flex-basis: 100%;
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .culture-strip { gap: 18px; }
}

/* Biography timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: var(--progress, 0%);
  background: linear-gradient(180deg, var(--pink), var(--cyan));
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.7);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item.reveal {
  transform: translateX(-24px);
}

.timeline-item.reveal.visible {
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  box-shadow: 0 0 12px rgba(255, 46, 147, 0.6);
  filter: saturate(0.5) brightness(0.75);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item.is-active::before {
  transform: scale(1.4);
  filter: saturate(1.3) brightness(1.2);
  box-shadow: 0 0 22px rgba(255, 46, 147, 0.9);
}

.timeline-year {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.timeline-item p {
  color: var(--fg-muted);
}

.bio-inline-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
  max-width: 560px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.bio-inline-img img {
  width: 100%;
  display: block;
}

/* Discography — bento grid */
.discog-bento {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 16px;
}

.bento-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-tile:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 229, 255, 0.18);
}

.bento-tile.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.has-video-preview:hover .bento-video-preview {
  opacity: 1;
}

.has-video-preview:hover .bento-still {
  opacity: 0;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, rgba(13, 2, 33, 0) 45%, rgba(13, 2, 33, 0.92) 100%);
}

.bento-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fg);
}

.bento-tile.is-featured .bento-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.bento-sub {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.bento-tile.is-multi {
  cursor: default;
}

.bento-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.bento-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bento-links a:hover {
  transform: scale(1.06);
  box-shadow: 0 0 14px rgba(255, 46, 147, 0.5);
}

@media (max-width: 640px) {
  .bento-tile.is-featured { grid-column: span 2; grid-row: span 1; }
}

/* Discography — uniform card grid (replaces the old mixed-size bento layout) */
.discog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.discog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.discog-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 229, 255, 0.16);
}

.discog-card-cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.discog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* For wide covers whose baked-in title text would get cropped by a plain
   square cover-fit — show the whole image, letterboxed, instead */
.discog-card-cover.is-contain {
  background: #0a0416;
}

.discog-card-cover.is-contain img {
  object-fit: contain;
}

.discog-card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.discog-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.discog-card-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.discog-card-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.discog-card-links a {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.discog-card-links a:hover {
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(255, 46, 147, 0.5);
}

/* Discography */
.discog-list {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.discog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  transition: background 0.2s;
}

.discog-item:last-child { border-bottom: none; }

.discog-item:hover {
  background: linear-gradient(90deg, rgba(255, 46, 147, 0.12), rgba(0, 229, 255, 0.08));
}

.discog-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.discog-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.discog-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.discog-link {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.discog-link:hover {
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(255, 46, 147, 0.5);
}

.discog-link.is-disabled {
  background: var(--border);
  color: var(--fg-muted);
  cursor: default;
  pointer-events: none;
}

/* Film / acting cards */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.film-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg-alt);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.film-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 229, 255, 0.18);
}

.film-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--yellow);
}

.film-poster {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 18px;
}

.film-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.film-credits {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

.film-credits strong {
  color: var(--fg);
}

.film-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 220px;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  transition: border-color 0.3s;
}

.team-card:hover .team-photo {
  border-color: var(--pink);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.team-role {
  color: var(--yellow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.team-card p.bio {
  color: var(--fg-muted);
  font-size: 0.92rem;
  max-width: 34ch;
  margin: 0 auto;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(0.15);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) saturate(1.2);
}

.gallery-item {
  cursor: zoom-in;
}

/* Lightbox / diaporama */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 1, 16, 0.95);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform-origin: center;
}

.lightbox-img.ken-burns {
  animation: kenBurns 6s ease-in-out forwards;
}

@keyframes kenBurns {
  0% { opacity: 0; transform: scale(0.97); }
  8% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.06); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-play {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-play:hover {
  background: rgba(255, 46, 147, 0.2);
  border-color: var(--pink);
  transform: scale(1.08);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-play {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.lightbox-play.is-playing {
  border-color: var(--cyan);
  color: var(--cyan);
}

.lightbox-counter {
  position: absolute;
  bottom: 32px;
  right: 32px;
  color: var(--fg-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.yt-lightbox-frame-wrap {
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
}

.yt-lightbox-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox-img { max-width: 94vw; max-height: 74vh; }
}

/* Coming soon badge */
.badge-soon {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  color: #14140f;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 12px;
  vertical-align: middle;
}

/* Breadcrumb-ish quick links row */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-links a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.quick-links a:hover {
  border-color: var(--pink);
  color: var(--fg);
}

@media (max-width: 860px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 150px 0 60px;
  }

  .page-hero-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-content.page-hero-grid,
  .page-hero-grid.wide-photo {
    max-width: var(--max-width);
  }

  .hero-image-xl {
    max-width: 100%;
    height: 60vh;
    max-height: 520px;
  }

  .hero-image-xl.is-cover {
    height: auto;
    max-height: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* Persistent audio widget */
.audio-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.audio-pill-stop {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.16), rgba(0, 229, 255, 0.12)), rgba(23, 11, 52, 0.92);
  backdrop-filter: blur(10px);
  color: var(--fg-muted);
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.audio-pill-stop::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.audio-pill-stop:hover {
  color: var(--pink);
  transform: translateY(-2px) scale(1.05);
}

.audio-pill-stop:hover::before { opacity: 1; }

.audio-pill-stop[hidden] { display: none; }

.audio-visualizer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05010f;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.audio-visualizer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}

.audio-visualizer-bg {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.4) saturate(1.4);
  transform: scale(1.1);
}

.audio-visualizer-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.audio-visualizer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}

.audio-visualizer-close:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.08); }

.audio-visualizer-share-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
}

.audio-visualizer-share {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}

.audio-visualizer-share:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.05); }
.audio-visualizer-share:disabled { opacity: 0.6; cursor: default; transform: none; }

.audio-share-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 200px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 6, 35, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.audio-share-menu[hidden] { display: none; }

.audio-share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.audio-share-option:hover { background: rgba(255, 255, 255, 0.1); }
.audio-share-option:disabled { opacity: 0.5; cursor: default; }
.audio-share-option[hidden] { display: none; }

.audio-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 700;
}

.audio-visualizer-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 32px;
  pointer-events: none;
}

.audio-visualizer-info > * { pointer-events: auto; }

.audio-visualizer-cover {
  width: min(260px, 42vw);
  height: min(260px, 42vw);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.06), 0 0 0 7px rgba(255, 255, 255, 0.15);
  margin-bottom: 14px;
  position: relative;
  animation: vinylSpin 4s linear infinite;
  animation-play-state: paused;
}

.audio-visualizer-overlay.is-playing .audio-visualizer-cover {
  animation-play-state: running;
}

.audio-visualizer-cover-wrap {
  position: relative;
  display: inline-block;
}

.audio-visualizer-cover-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #05010f;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .audio-visualizer-cover { animation: none; }
}

.audio-visualizer-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
}

.audio-visualizer-sub {
  color: var(--fg-muted);
  font-size: 1rem;
}

.audio-visualizer-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.audio-visualizer-controls .audio-btn {
  font-size: 1.5rem;
  color: #fff;
}

.audio-visualizer-playbtn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 30px rgba(255, 46, 147, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .audio-visualizer-overlay { transition: none; }
}

.audio-widget-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.14), rgba(0, 229, 255, 0.10)), rgba(23, 11, 52, 0.92);
  backdrop-filter: blur(10px);
  color: var(--fg);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.2s, box-shadow 0.3s;
  font-size: 0.85rem;
  max-width: 260px;
}

.audio-widget-pill::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--pink), var(--cyan), var(--yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.audio-widget-pill:hover { transform: translateY(-2px); }
.audio-widget-pill:hover::before { opacity: 1; }

.audio-widget-pill.is-playing {
  animation: pillGlow 2.6s ease-in-out infinite;
}

.audio-widget-pill.is-playing::before { opacity: 0.85; }

@keyframes pillGlow {
  0%, 100% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(255, 46, 147, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04) inset; }
  50% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 26px rgba(0, 229, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset; }
}

.audio-widget-pill .note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  box-shadow: 0 0 12px rgba(255, 46, 147, 0.35);
}

.pill-eq {
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.audio-widget-pill.is-playing .pill-eq { display: flex; }
.audio-widget-pill.is-playing .note { display: none; }

.pill-eq span {
  width: 3px;
  height: 55%;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.95);
  animation: eqBar 0.9s ease-in-out infinite;
  transform-origin: bottom;
}

.pill-eq span:nth-child(1) { animation-delay: -0.6s; }
.pill-eq span:nth-child(2) { animation-delay: -0.3s; }
.pill-eq span:nth-child(3) { animation-delay: 0s; }

/* Once the real Web Audio analyser takes over, it drives transform directly */
.pill-eq.is-live span {
  animation: none;
  transition: transform 0.08s linear;
}

.audio-widget-pill .now-playing {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--fg-muted);
  font-weight: 500;
}

.audio-widget-pill .now-playing.is-playing {
  color: var(--fg);
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.audio-widget-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 320px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 2, 33, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.audio-widget-panel[hidden] { display: none; }

.audio-transport {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.audio-transport-cover {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  animation: vinylSpin 3s linear infinite;
  animation-play-state: paused;
}

.audio-widget.is-playing .audio-transport-cover {
  animation-play-state: running;
}

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

.audio-transport-cover-btn {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.audio-transport-cover-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .audio-transport-cover { animation: none; }
}

.audio-cover-expand-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.audio-transport-cover-btn:hover .audio-cover-expand-hint { opacity: 1; }

.audio-visualizer-toggle-btn {
  position: relative;
}

.viz-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 6px var(--pink);
  animation: vizBadgePulse 1.6s ease-in-out infinite;
}

.viz-badge[hidden] { display: none; }

@keyframes vizBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

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

.audio-transport-title {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-progress {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  margin-top: 8px;
  cursor: pointer;
  overflow: hidden;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.audio-btn {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.audio-btn:hover { color: var(--pink); transform: scale(1.15); }

.audio-track-list {
  overflow-y: auto;
  padding: 8px;
}

.audio-track-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.audio-track-item:hover { background: var(--bg-alt); }

.audio-track-item.is-current .audio-track-title { color: var(--cyan); }

.audio-track-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.audio-track-title {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-track-sub {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

@media (max-width: 640px) {
  .audio-widget { right: 12px; bottom: 12px; }
  .audio-widget-panel { width: calc(100vw - 24px); }
  .audio-widget-pill { max-width: calc(100vw - 140px); }
}

@media (max-width: 640px) {
  .discog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .discog-card-body {
    padding: 10px 12px 12px;
    gap: 4px;
  }
  .discog-card-title {
    font-size: 0.82rem;
  }
  .discog-card-sub {
    font-size: 0.66rem;
  }
  .discog-card-links {
    gap: 5px;
  }
  .discog-card-links a {
    font-size: 0.55rem;
    padding: 5px 8px;
  }
}

/* Custom cursor (fine-pointer desktops only) */
.has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--pink);
  box-shadow: 0 0 16px rgba(255, 46, 147, 0.55);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
  will-change: transform;
}

.custom-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.custom-cursor.is-hovering {
  width: 46px;
  height: 46px;
  border-color: var(--cyan);
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.6);
}

/* Branded intro splash (first page of a session only) */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0d0221 0%, #1a0940 50%, #0d0221 100%);
  animation: introFadeIn 0.3s ease;
}

.intro-splash.is-hiding {
  animation: introFadeOut 0.5s ease forwards;
}

.intro-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
}

/* Expanding sound rings, like a beat pulsing outward */
.intro-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-rings span {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  opacity: 0;
  animation: introRing 2.4s ease-out infinite;
}

.intro-rings span:nth-child(2) { border-color: var(--pink); animation-delay: 0.8s; }
.intro-rings span:nth-child(3) { border-color: var(--purple); animation-delay: 1.6s; }

@keyframes introRing {
  0% { transform: scale(0.4); opacity: 0.7; }
  80% { opacity: 0.12; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* Equalizer bars — the "musical" visualizer moment before the logo drops */
.intro-eq {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  height: 90px;
  opacity: 1;
  animation: introEqFade 0.5s ease 0.85s forwards;
}

.intro-eq span {
  width: 8px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pink), var(--purple), var(--cyan));
  transform-origin: bottom;
  animation: introEqBounce 0.55s ease-in-out infinite alternate;
}

.intro-eq span:nth-child(1) { animation-delay: -0.5s; }
.intro-eq span:nth-child(2) { animation-delay: -0.1s; }
.intro-eq span:nth-child(3) { animation-delay: -0.35s; }
.intro-eq span:nth-child(4) { animation-delay: -0.6s; }
.intro-eq span:nth-child(5) { animation-delay: -0.2s; }
.intro-eq span:nth-child(6) { animation-delay: -0.45s; }
.intro-eq span:nth-child(7) { animation-delay: -0.05s; }

@keyframes introEqBounce {
  from { transform: scaleY(0.15); }
  to { transform: scaleY(1); }
}

@keyframes introEqFade {
  to { opacity: 0; transform: scale(0.7); }
}

/* The logo lands like a beat drop, right as the equalizer fades out */
.intro-logo-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.7);
  animation: introLogoDrop 0.6s cubic-bezier(0.2, 1.4, 0.4, 1) 0.8s forwards;
}

.intro-logo-divine {
  font-family: 'Monoton', var(--font-display);
  font-size: clamp(2.6rem, 10vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--yellow), var(--pink));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 46, 147, 0.65)) drop-shadow(0 0 34px rgba(0, 229, 255, 0.35));
  animation: gradientShift 6s ease infinite;
}

.intro-logo-style {
  margin-top: -0.55em;
  font-family: var(--font-style-script);
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--cyan);
  opacity: 0.9;
}

@keyframes introLogoDrop {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes introFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes introFadeOut {
  to { opacity: 0; }
}

@keyframes introLogoPulse {
  0% { transform: scale(0.85); opacity: 0; }
  35% { transform: scale(1.06); opacity: 1; }
  65% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
