/* ==========================================================================
   NABIL PROFILE — PREMIUM MEMBER PAGE STYLES
   Warm dark cinema aesthetic. All original sections preserved & elevated.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --bg-deep:       #080604;
  --bg-panel:      #0F0B09;
  --accent:        #E05800;
  --accent-dim:    rgba(224, 88, 0, 0.12);
  --accent-glow:   rgba(224, 88, 0, 0.35);
  --text-light:    #F5E0C3;
  --text-muted:    #7A6B5C;
  --text-faint:    rgba(245, 224, 195, 0.3);

  --glass:         rgba(255, 255, 255, 0.025);
  --glass-border:  rgba(245, 224, 195, 0.07);
  --glass-shine:   rgba(224, 88, 0, 0.2);

  --font-heading:  'Literata', Georgia, serif;
  --font-mono:     'DM Mono', 'Courier New', monospace;
  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-heading);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page entrance fade */
body {
  animation: pageIn 0.8s var(--ease-expo) both;
}

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

::selection {
  background: var(--accent);
  color: var(--bg-deep);
}

/* --------------------------------------------------------------------------
   3. CINEMATIC NOISE + GRID TEXTURE
   -------------------------------------------------------------------------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.04;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(224, 88, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 88, 0, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* --------------------------------------------------------------------------
   4. CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
  box-shadow: 0 0 8px var(--accent);
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(224, 88, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
  transition: width 0.25s var(--ease-expo),
              height 0.25s var(--ease-expo),
              background 0.25s ease,
              border-color 0.25s ease;
}

.cursor-ring.cursor-hover {
  width: 56px;
  height: 56px;
  background: rgba(224, 88, 0, 0.08);
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */
.profile-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.8rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.4s ease, padding 0.3s ease;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.profile-nav.scrolled {
  background: rgba(8, 6, 4, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--glass-border);
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link:hover {
  color: var(--text-light);
  transform: translateX(-4px);
}

.nav-id { color: var(--accent); }

/* --------------------------------------------------------------------------
   6. AMBIENT GRADIENTS
   -------------------------------------------------------------------------- */
.ambient-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: ambientIn 2s var(--ease-expo) 0.5s forwards;
  will-change: transform, opacity;
}

@keyframes ambientIn {
  to { opacity: 0.14; }
}

.hero-glow {
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ambientIn 2s var(--ease-expo) 0.5s forwards,
             ambientPulse 9s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  from { transform: translate(-50%, -50%) scale(1);   opacity: 0.10; }
  to   { transform: translate(-50%, -50%) scale(1.15); opacity: 0.18; }
}

.song-glow {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  top: 40%;
  right: -10%;
}

/* --------------------------------------------------------------------------
   7. SECTION LAYOUT
   -------------------------------------------------------------------------- */
.fullscreen-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 8%;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: none;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  flex-direction: column;
  text-align: center;
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-mono {
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 5px;
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.92;
  font-weight: 200;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, var(--text-light) 40%, rgba(245, 224, 195, 0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) 1.5s forwards;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 1px solid var(--text-muted);
  border-radius: 11px;
  position: relative;
}

.wheel {
  width: 2px;
  height: 5px;
  background: var(--accent);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { top: 5px;  opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 0.6; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   9. INTRODUCTION & STORY SECTIONS
   -------------------------------------------------------------------------- */
.story-container {
  max-width: 1100px;
  width: 100%;
}

.story-text {
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  line-height: 1.35;
  font-weight: 300;
  color: var(--text-muted);
}

.story-text .highlight {
  color: var(--text-light);
  font-style: italic;
  position: relative;
  display: inline;
}

.story-text .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-expo);
}

.story-text.is-visible .highlight::after {
  transform: scaleX(1);
  transition-delay: 0.6s;
}

/* --------------------------------------------------------------------------
   10. SKILLS SECTION
   -------------------------------------------------------------------------- */
.skills-container {
  width: 100%;
  max-width: 1000px;
}

.skill-row {
  margin-bottom: 3.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.skill-name { color: var(--text-light); }
.skill-pct  { color: var(--accent); font-weight: 500; }

.skill-track {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  border-radius: 1px;
}

.skill-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(224, 88, 0, 0.4));
  width: 0%;
  transition: width 1.8s var(--ease-expo);
  border-radius: 1px;
}

/* Glowing tip at the fill's edge */
.skill-fill::after {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  opacity: 0;
  transition: opacity 0.4s ease 1.4s;
}

.skill-fill[style*="width"]:not([style*="0%"])::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   11. SONG / MUSIC PLAYER
   -------------------------------------------------------------------------- */
.song-section {
  flex-direction: column;
}

.song-showcase-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  width: 100%;
  max-width: 820px;
}

/* Player card */
.audio-player-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2.8rem;
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 0.4s ease;
}

.audio-player-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
}

.audio-player-container.playing {
  border-color: rgba(224, 88, 0, 0.2);
}

/* Vinyl / Album Art */
.album-art {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 0 8px rgba(0,0,0,0.4),
    0 0 0 9px rgba(255,255,255,0.03);
  transition: box-shadow 0.5s ease;
}

.album-art.playing {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 40px var(--accent-glow),
    0 0 0 1px rgba(224, 88, 0, 0.25),
    0 0 0 8px rgba(0,0,0,0.4),
    0 0 0 9px rgba(224, 88, 0, 0.08);
  animation: vinylSpin 8s linear infinite;
}

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

.album-art.paused-spin {
  animation-play-state: paused;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  /* Vinyl label effect: slightly desaturated center circle */
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.85) 28%, black 29%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.85) 28%, black 29%);
}

/* Vinyl center hole */
.album-art::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-deep);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
  z-index: 2;
}

/* Song Details */
.song-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.song-title {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.song-artist {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

/* Progress Bar */
.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.time-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  min-width: 3rem;
  flex-shrink: 0;
}

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

.progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(224, 88, 0, 0.5));
  border-radius: 3px;
  width: 0%;
  position: relative;
  pointer-events: none;
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-light);
  box-shadow: 0 0 8px rgba(224, 88, 0, 0.6);
  transition: transform 0.2s var(--ease-expo);
  pointer-events: none;
}

.progress-track:hover .progress-thumb {
  transform: translateY(-50%) scale(1);
}

/* Controls Row */
.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.play-btn:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: scale(1.06);
}

.play-btn:active { transform: scale(0.96); }

.play-icon,
.pause-icon {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pause-icon { display: none; opacity: 0; }
.play-icon  { display: block; opacity: 1; }

.play-btn.is-playing .play-icon  { display: none; opacity: 0; }
.play-btn.is-playing .pause-icon { display: block; opacity: 1; }

/* Equalizer Bars */
.waveform {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 28px;
}

.bar {
  width: 3px;
  background: var(--accent);
  height: 4px;
  border-radius: 2px;
  opacity: 0.5;
  transition: height 0.1s ease;
}

.playing .bar {
  opacity: 1;
  animation: eqWave 0.8s ease-in-out infinite alternate;
}

.bar:nth-child(1)  { animation-delay: 0.00s; }
.bar:nth-child(2)  { animation-delay: 0.07s; }
.bar:nth-child(3)  { animation-delay: 0.14s; }
.bar:nth-child(4)  { animation-delay: 0.21s; }
.bar:nth-child(5)  { animation-delay: 0.28s; }
.bar:nth-child(6)  { animation-delay: 0.35s; }
.bar:nth-child(7)  { animation-delay: 0.42s; }
.bar:nth-child(8)  { animation-delay: 0.28s; }
.bar:nth-child(9)  { animation-delay: 0.14s; }
.bar:nth-child(10) { animation-delay: 0.07s; }

@keyframes eqWave {
  from { height: 3px; }
  to   { height: 26px; }
}

/* Volume Control */
.volume-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.volume-icon {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}

/* Song Description Box */
.song-description-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  width: 100%;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.song-description-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--accent);
  opacity: 0.4;
  border-radius: 2px;
}

.song-description-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  padding-left: 1.2rem;
}

/* --------------------------------------------------------------------------
   12. STICKY MINI-PLAYER
   -------------------------------------------------------------------------- */
.mini-player {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 999;
  background: rgba(15, 11, 9, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  transition: transform 0.5s var(--ease-expo), opacity 0.4s ease;
  opacity: 0;
  white-space: nowrap;
  max-width: calc(100vw - 3rem);
}

.mini-player.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.mini-cover {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mini-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mini-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-artist {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text-light);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mini-play-btn:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 12px var(--accent-glow);
}

.mini-waveform {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 18px;
}

.mini-waveform .bar {
  width: 2px;
  height: 3px;
  background: var(--accent);
  border-radius: 1px;
  opacity: 0.5;
}

.mini-waveform.playing .bar {
  opacity: 1;
  animation: eqWave 0.8s ease-in-out infinite alternate;
}

/* --------------------------------------------------------------------------
   13. LYRICS EXPERIENCE
   -------------------------------------------------------------------------- */
.lyrics-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(12, 8, 5, 0.98) 100%);
}

.lyrics-wrapper {
  height: 70vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  overflow: hidden;
}

.lyrics-container {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 8%;
}

.lyric-line {
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  margin-bottom: 1.8rem;
  opacity: 0.08;
  color: var(--text-muted);
  transition:
    opacity       0.6s cubic-bezier(0.22, 1, 0.36, 1),
    color         0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform     0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter        0.6s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow   0.5s ease,
    font-size     0.4s ease;
  transform: scale(0.88);
  filter: blur(5px);
  cursor: default;
  font-weight: 300;
  line-height: 1.3;
}

/* Near line (1 away from active) */
.lyric-line--near {
  opacity: 0.32;
  filter: blur(1.5px);
  transform: scale(0.94);
  color: var(--text-light);
}

/* Far near (2 away) */
.lyric-line--far {
  opacity: 0.15;
  filter: blur(3px);
  transform: scale(0.9);
}

/* Active line */
.lyric-line.active {
  opacity: 1;
  transform: scale(1.06);
  filter: blur(0);
  color: var(--text-light);
  font-weight: 400;
  text-shadow:
    0 0 20px rgba(224, 88, 0, 0.5),
    0 0 50px rgba(224, 88, 0, 0.2);
  animation: lyricPulse 2.5s ease-in-out infinite;
}

@keyframes lyricPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(224, 88, 0, 0.45); }
  50%       { text-shadow: 0 0 40px rgba(224, 88, 0, 0.8), 0 0 70px rgba(224, 88, 0, 0.25); }
}

/* --------------------------------------------------------------------------
   14. DVD EASTER EGG
   -------------------------------------------------------------------------- */
.dvd-section {
  position: relative;
  overflow: hidden;
}

.absolute-label {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

#dvd-logo {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.8rem 1.8rem;
  border: 2px solid var(--accent);
  border-radius: 50px;
  text-shadow: 0 0 12px var(--accent);
  box-shadow:
    inset 0 0 20px rgba(224, 88, 0, 0.15),
    0 0 20px rgba(224, 88, 0, 0.2);
  user-select: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* --------------------------------------------------------------------------
   15. QUOTE SECTION
   -------------------------------------------------------------------------- */
.massive-quote {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  text-align: center;
  line-height: 1.15;
  font-weight: 300;
  font-style: italic;
  background: linear-gradient(160deg, var(--text-light) 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1200px;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   16. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.gallery-item {
  aspect-ratio: 3/4;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--glass);
  transition: transform 0.5s var(--ease-expo), border-color 0.4s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(224, 88, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before { opacity: 1; }

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-align: center;
  padding: 1rem;
  transition: color 0.4s ease;
}

.img-placeholder::before {
  content: '▣';
  font-size: 2rem;
  color: rgba(224, 88, 0, 0.2);
  transition: color 0.4s ease, transform 0.5s var(--ease-expo);
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
  border-color: rgba(224, 88, 0, 0.3);
}

.gallery-item:hover .img-placeholder { color: var(--accent); }
.gallery-item:hover .img-placeholder::before {
  color: rgba(224, 88, 0, 0.6);
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   17. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.magnetic-btn {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 1px;
}

.magnetic-btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 30px var(--accent-glow);
}

.footer-bottom {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity   1s var(--ease-expo),
    transform 1s var(--ease-expo);
  transition-delay: var(--delay, 0s);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .audio-player-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .album-art {
    width: 150px;
    height: 150px;
  }

  .song-details {
    align-items: center;
    width: 100%;
  }

  .player-controls {
    justify-content: center;
  }

  .volume-row {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .fullscreen-section {
    padding: 7rem 6%;
  }

  .cursor-dot, .cursor-ring {
    display: none;
  }

  * { cursor: auto; }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .story-text {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }

  .song-title {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lyric-line {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }

  .mini-player {
    padding: 0.6rem 1rem;
    gap: 0.8rem;
  }

  .song-description-box {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .progress-wrapper {
    flex-wrap: nowrap;
  }

  .volume-slider {
    width: 80px;
  }
}

/* --------------------------------------------------------------------------
   20. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body { animation: none; }
}