/* ==========================================================================
   LEON - "Paternidad" Album Website
   Aesthetic: Dark cinematic luxury / Versace meets Latin music
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Primary palette */
  --black:          #0a0a0a;
  --gold:           #d4a853;
  --gold-dark:      #c9952b;
  --gold-light:     #e8c67a;
  --cream:          #f5e6c8;

  /* Secondary palette */
  --navy:           #0d1117;
  --charcoal:       #1a1a2e;
  --charcoal-light: #252540;
  --grey-dark:      #2a2a3a;
  --grey-mid:       #888;
  --grey-light:     #b0b0b0;
  --white:          #f0f0f0;

  /* Functional */
  --success:        #4caf50;
  --error:          #e74c3c;

  /* Gradients */
  --gradient-gold:        linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  --gradient-gold-border: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  --gradient-dark:        linear-gradient(180deg, var(--black) 0%, var(--navy) 50%, var(--charcoal) 100%);
  --gradient-overlay:     linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
  --gradient-overlay-top: linear-gradient(0deg, transparent 0%, rgba(10,10,10,0.8) 100%);

  /* Typography */
  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Sizing */
  --nav-height:    70px;
  --player-height: 80px;
  --max-width:     1280px;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast:   0.2s;
  --duration-normal: 0.4s;
  --duration-slow:   0.8s;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:   0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg:   0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(212, 168, 83, 0.15);
  --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.2);
}

/* --------------------------------------------------------------------------
   1. Global Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--black);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Body padding for sticky player */
body.player-active {
  padding-bottom: var(--player-height);
}

::selection {
  background-color: var(--gold);
  color: var(--black);
}

::-moz-selection {
  background-color: var(--gold);
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--grey-light);
}

/* Utility container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section base */
section {
  padding: var(--space-4xl) 0;
  position: relative;
}

/* Section headings */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: var(--space-md) auto 0;
}

.section-header p {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Custom Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--black);
}

/* --------------------------------------------------------------------------
   2. Navigation Bar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212, 168, 83, 0.1),
              var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.navbar__logo:hover {
  color: var(--gold);
  opacity: 0.8;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width var(--duration-normal) var(--ease-smooth);
}

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

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-smooth),
              opacity var(--duration-fast) var(--ease-smooth);
}

.navbar__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.navbar__mobile-menu.open {
  display: flex;
  opacity: 1;
}

.navbar__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.navbar__mobile-menu a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   3. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__background img,
.hero__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

/* Subtle vignette effect */
.hero__overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(10,10,10,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: var(--space-xl);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-elegant) 0.3s forwards;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-elegant) 0.6s forwards;
}

.hero__album-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-elegant) 0.9s forwards;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-elegant) 1.2s forwards;
}

/* Floating particles overlay on hero */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite var(--ease-smooth);
}

.particle:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 10s; }
.particle:nth-child(2)  { left: 20%; animation-delay: 1.5s; animation-duration: 12s; }
.particle:nth-child(3)  { left: 30%; animation-delay: 0.5s; animation-duration: 9s;  }
.particle:nth-child(4)  { left: 40%; animation-delay: 2s;   animation-duration: 11s; }
.particle:nth-child(5)  { left: 55%; animation-delay: 1s;   animation-duration: 10s; }
.particle:nth-child(6)  { left: 65%; animation-delay: 3s;   animation-duration: 13s; }
.particle:nth-child(7)  { left: 75%; animation-delay: 0.7s; animation-duration: 8s;  }
.particle:nth-child(8)  { left: 85%; animation-delay: 2.5s; animation-duration: 11s; }
.particle:nth-child(9)  { left: 50%; animation-delay: 1.8s; animation-duration: 9s;  }
.particle:nth-child(10) { left: 92%; animation-delay: 0.3s; animation-duration: 14s; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeIn 1s var(--ease-elegant) 2s forwards;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.hero__scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold-dark);
  position: relative;
  overflow: hidden;
}

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--border-radius);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--black);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Shimmer sweep on primary button hover */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s var(--ease-smooth);
}

.btn--primary:hover::after {
  left: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}

.btn--outline:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 230, 200, 0.2);
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 230, 200, 0.05);
  color: var(--cream);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   4. Section Layouts
   -------------------------------------------------------------------------- */

/* --- Album Section --- */
.album-section {
  background: var(--gradient-dark);
  position: relative;
}

.album-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.album-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.album-cover {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.album-cover__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.album-cover:hover .album-cover__image {
  transform: scale(1.02);
}

/* Gold border glow around album cover */
.album-cover::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--border-radius-lg) + 2px);
  background: var(--gradient-gold-border);
  z-index: -1;
  opacity: 0.4;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.album-cover:hover::before {
  opacity: 0.8;
}

.album-info {
  text-align: center;
}

.album-info__title {
  margin-bottom: var(--space-sm);
}

.album-info__artist {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.album-info__description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.album-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-xl);
  font-size: 0.85rem;
  color: var(--grey-mid);
}

.album-info__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.album-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* --- Songs Grid --- */
.songs-section {
  background: var(--navy);
}

.songs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* --- About Section --- */
.about-section {
  background: var(--black);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, var(--black));
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: var(--space-lg);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-text .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* --- News Section --- */
.news-section {
  background: var(--charcoal);
}

/* --- Contact Section --- */
.contact-section {
  background: var(--navy);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

/* --- Merch Section --- */
.merch-section {
  background: var(--black);
}

/* --- Videos Section --- */
.videos-section {
  background: var(--charcoal);
}

/* --------------------------------------------------------------------------
   5. Song Cards
   -------------------------------------------------------------------------- */
.song-card {
  display: grid;
  grid-template-columns: 50px 60px 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: var(--border-radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.song-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.song-card:hover {
  background: rgba(26, 26, 46, 0.9);
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
}

.song-card:hover::before {
  opacity: 1;
}

.song-card__number {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--grey-mid);
  text-align: center;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.song-card:hover .song-card__number {
  color: var(--gold);
}

.song-card__thumbnail {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  object-fit: cover;
  flex-shrink: 0;
}

.song-card__info {
  min-width: 0;
}

.song-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.song-card:hover .song-card__title {
  color: var(--gold);
}

.song-card__artist {
  font-size: 0.8rem;
  color: var(--grey-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-card__duration {
  font-size: 0.85rem;
  color: var(--grey-mid);
  font-variant-numeric: tabular-nums;
}

.song-card__play-icon {
  display: none;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.song-card:hover .song-card__number {
  display: none;
}

.song-card:hover .song-card__play-icon {
  display: block;
}

/* Song card grid variant (for explore/discover) */
.song-card--grid {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  grid-template-columns: none;
}

.song-card--grid .song-card__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
}

.song-card--grid .song-card__info {
  padding: var(--space-md);
}

/* --------------------------------------------------------------------------
   6. Music Player Bar
   -------------------------------------------------------------------------- */
.player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--player-height);
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.player.active {
  transform: translateY(0);
}

.player .container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
}

/* Track info */
.player__track {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 0;
}

.player__track-image {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  object-fit: cover;
  flex-shrink: 0;
}

.player__track-info {
  min-width: 0;
}

.player__track-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player__track-artist {
  font-size: 0.75rem;
  color: var(--grey-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.player__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.player__buttons {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.player__btn {
  color: var(--cream);
  transition: color var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.player__btn--play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  transition: transform var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-fast) var(--ease-smooth);
}

.player__btn--play:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
  color: var(--black);
}

.player__btn--prev,
.player__btn--next {
  font-size: 1rem;
}

.player__btn--shuffle,
.player__btn--repeat {
  font-size: 0.85rem;
  color: var(--grey-mid);
}

.player__btn--shuffle.active,
.player__btn--repeat.active {
  color: var(--gold);
}

/* Progress bar */
.player__progress {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  max-width: 600px;
}

.player__time {
  font-size: 0.7rem;
  color: var(--grey-mid);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: center;
}

.player__progress-bar {
  flex: 1;
  height: 4px;
  background: var(--charcoal-light);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.player__progress-bar:hover {
  height: 6px;
}

.player__progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 0%;
  position: relative;
  transition: width 0.1s linear;
}

.player__progress-bar:hover .player__progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 168, 83, 0.5);
}

/* Volume */
.player__volume {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.player__volume-bar {
  width: 80px;
  height: 4px;
  background: var(--charcoal-light);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.player__volume-fill {
  height: 100%;
  background: var(--cream);
  border-radius: 2px;
  width: 70%;
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(212, 168, 83, 0.08);
  padding: var(--space-4xl) 0 100px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  display: block;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--grey-mid);
  font-style: italic;
}

.footer__column h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.footer__column ul {
  text-align: center;
}

.footer__column ul li {
  margin-bottom: var(--space-sm);
}

.footer__column ul a {
  font-size: 0.9rem;
  color: var(--grey-mid);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer__column ul a:hover {
  color: var(--gold);
}

/* Social links */
.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(245, 230, 200, 0.06);
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.8rem;
  color: var(--grey-mid);
  text-align: center;
}

.footer__bottom a {
  color: var(--grey-mid);
}

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

/* --------------------------------------------------------------------------
   8. Page Transitions
   -------------------------------------------------------------------------- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* Page enter / exit */
.page-enter {
  animation: pageEnter 0.6s var(--ease-elegant) forwards;
}

.page-exit {
  animation: pageExit 0.4s var(--ease-smooth) forwards;
}

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

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

/* --------------------------------------------------------------------------
   10. Individual Song Page Layout
   -------------------------------------------------------------------------- */
.song-page {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
}

.song-page__hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.song-page__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px) brightness(0.3);
  transform: scale(1.1);
}

.song-page__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 0%, var(--black) 100%);
}

.song-page__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: var(--space-2xl);
}

.song-page__cover {
  width: 200px;
  height: 200px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.song-page__meta {
  flex: 1;
}

.song-page__meta p {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.song-page__meta h1 {
  margin-bottom: var(--space-sm);
}

.song-page__meta-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: var(--space-lg);
}

/* Song page player */
.song-page__player {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--border-radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.song-page__waveform {
  width: 100%;
  height: 80px;
  margin-bottom: var(--space-md);
  background: repeating-linear-gradient(
    90deg,
    var(--charcoal-light) 0px,
    var(--charcoal-light) 2px,
    transparent 2px,
    transparent 4px
  );
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.song-page__waveform-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(212, 168, 83, 0.15);
  width: 0%;
}

/* Lyrics display */
.song-page__lyrics {
  padding: var(--space-3xl) 0;
}

.song-page__lyrics h2 {
  margin-bottom: var(--space-xl);
}

.lyrics-content {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--grey-light);
  max-width: 650px;
}

.lyrics-content .verse {
  margin-bottom: var(--space-xl);
}

.lyrics-content .chorus {
  color: var(--cream);
  font-weight: 500;
  border-left: 2px solid var(--gold-dark);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.lyrics-line.active {
  color: var(--gold);
  font-weight: 600;
}

/* Story section */
.song-page__story {
  background: var(--charcoal);
  padding: var(--space-4xl) 0;
}

.song-page__story h2 {
  margin-bottom: var(--space-xl);
}

.story-content {
  max-width: 700px;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.story-content blockquote {
  border-left: 3px solid var(--gold-dark);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--cream);
  font-size: 1.15rem;
}

/* Credits */
.song-page__credits {
  padding: var(--space-3xl) 0;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.credit-item h4 {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.credit-item p {
  font-size: 0.95rem;
  color: var(--grey-light);
}

/* --------------------------------------------------------------------------
   11. Merch Grid
   -------------------------------------------------------------------------- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.merch-card {
  background: rgba(26, 26, 46, 0.4);
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.merch-card:hover {
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.merch-card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.merch-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.merch-card:hover .merch-card__image img {
  transform: scale(1.08);
}

.merch-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.merch-card__body {
  padding: var(--space-lg);
}

.merch-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.merch-card__category {
  font-size: 0.8rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.merch-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.merch-card__price .original-price {
  font-size: 0.85rem;
  color: var(--grey-mid);
  text-decoration: line-through;
  margin-left: var(--space-sm);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   12. News / Blog Cards
   -------------------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.news-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(26, 26, 46, 0.4);
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.news-card:hover {
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__body {
  padding: var(--space-lg);
}

.news-card__date {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.news-card:hover .news-card__title {
  color: var(--gold);
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.news-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.news-card__link::after {
  content: '\2192';
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.news-card:hover .news-card__link::after {
  transform: translateX(4px);
}

/* Featured news card */
.news-card--featured {
  grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   13. Contact Form
   -------------------------------------------------------------------------- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-xl);
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--grey-light);
  font-size: 0.95rem;
}

.contact-detail__icon {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
}

.contact-form {
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(245, 230, 200, 0.1);
  border-radius: var(--border-radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-fast) var(--ease-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-mid);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form-group--error input,
.form-group--error textarea {
  border-color: var(--error);
}

.form-error {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: var(--space-xs);
}

.form-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  text-align: center;
  color: var(--success);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   13b. Waitlist Form (Merch)
   -------------------------------------------------------------------------- */
.section--waitlist {
  padding-top: 0;
}

.waitlist-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.waitlist-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.waitlist-header .section-subtitle {
  max-width: 520px;
  margin: var(--space-md) auto 0;
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.waitlist-form {
  max-width: 100%;
}

.waitlist-products-check {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

label.waitlist-check-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  padding: 1rem 1.125rem;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  user-select: none;
  text-transform: none;
  font-weight: normal;
  letter-spacing: normal;
  margin-bottom: 0;
  font-size: 1rem;
}

.waitlist-check-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.04);
  transform: translateY(-1px);
}

.waitlist-check-item:has(input:checked) {
  border-color: rgba(212, 168, 83, 0.5);
  background: rgba(212, 168, 83, 0.06);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.08), inset 0 0 20px rgba(212, 168, 83, 0.02);
}

.waitlist-check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox box */
.waitlist-check-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(212, 168, 83, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  flex-shrink: 0;
}

.waitlist-check-item:hover .waitlist-check-box {
  border-color: rgba(212, 168, 83, 0.45);
}

.waitlist-check-item:has(input:checked) .waitlist-check-box {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.3);
}

.waitlist-check-icon {
  width: 14px;
  height: 14px;
  color: var(--black);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.waitlist-check-item:has(input:checked) .waitlist-check-icon {
  opacity: 1;
  transform: scale(1);
}

/* Product info */
.waitlist-check-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.waitlist-check-name {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.waitlist-check-item:has(input:checked) .waitlist-check-name {
  color: var(--gold);
}

.waitlist-check-detail {
  font-size: 0.75rem;
  color: rgba(245, 241, 235, 0.35);
  letter-spacing: 0.02em;
}

/* Price tag */
.waitlist-check-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(212, 168, 83, 0.5);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.waitlist-check-item:has(input:checked) .waitlist-check-price {
  color: var(--gold);
}

/* Mobile: stack price below name */
@media (max-width: 480px) {
  .waitlist-check-item {
    gap: 0.75rem;
    padding: 0.875rem 1rem;
  }
  .waitlist-check-price {
    font-size: 0.85rem;
  }
}

.waitlist-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.waitlist-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.waitlist-success-inner h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
}

.waitlist-success-inner p {
  color: var(--grey-mid);
  max-width: 400px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .waitlist-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* --------------------------------------------------------------------------
   14. Video Gallery Grid
   -------------------------------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.video-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.video-card__thumbnail {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.video-card:hover .video-card__thumbnail {
  transform: scale(1.05);
}

.video-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal) var(--ease-smooth);
}

.video-card:hover .video-card__overlay {
  background: rgba(10, 10, 10, 0.2);
}

.video-card__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.4rem;
  transition: transform var(--duration-normal) var(--ease-bounce),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.video-card:hover .video-card__play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.4);
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(10,10,10,0.9));
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.video-card__views {
  font-size: 0.75rem;
  color: var(--grey-mid);
}

/* Featured video */
.video-card--featured {
  grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   15. Loading / Reveal Animations (CSS classes)
   -------------------------------------------------------------------------- */

/* Base state: hidden */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-elegant),
              transform var(--duration-slow) var(--ease-elegant);
}

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

.fade-in {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-elegant);
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--duration-slow) var(--ease-elegant),
              transform var(--duration-slow) var(--ease-elegant);
}

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

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--duration-slow) var(--ease-elegant),
              transform var(--duration-slow) var(--ease-elegant);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--duration-slow) var(--ease-elegant),
              transform var(--duration-slow) var(--ease-elegant);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-elegant),
              transform var(--duration-slow) var(--ease-elegant);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grids */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* --------------------------------------------------------------------------
   16. Gold Shimmer Animation on Headings
   -------------------------------------------------------------------------- */
.shimmer {
  background: linear-gradient(
    110deg,
    var(--cream) 0%,
    var(--cream) 40%,
    var(--gold-light) 50%,
    var(--cream) 60%,
    var(--cream) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s var(--ease-smooth) infinite;
}

.shimmer-gold {
  background: linear-gradient(
    110deg,
    var(--gold-dark) 0%,
    var(--gold-dark) 40%,
    var(--gold-light) 50%,
    var(--gold-dark) 60%,
    var(--gold-dark) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s var(--ease-smooth) infinite;
}

/* Shimmer on border/dividers */
.shimmer-border {
  position: relative;
}

.shimmer-border::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold-light) 50%,
    var(--gold-dark) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s var(--ease-smooth) infinite;
}

/* --------------------------------------------------------------------------
   17. Animated Underline Effects on Links
   -------------------------------------------------------------------------- */
.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Slide from center variant */
.link-underline--center::after {
  left: 50%;
  transform: scaleX(0) translateX(-50%);
  transform-origin: center;
}

.link-underline--center:hover::after {
  transform: scaleX(1) translateX(-50%);
}

/* Gradient underline */
.link-underline--gradient::after {
  background: var(--gradient-gold);
  height: 2px;
}

/* Bold underline that grows */
.link-underline--grow::after {
  height: 0;
  bottom: 0;
  background: rgba(212, 168, 83, 0.15);
  transform: scaleX(1);
  transition: height var(--duration-normal) var(--ease-smooth);
}

.link-underline--grow:hover::after {
  height: 100%;
}

/* --------------------------------------------------------------------------
   18. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: translateY(80vh) scale(1);
  }
  90% {
    opacity: 0.3;
    transform: translateY(-10vh) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(0);
  }
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 200%; }
}

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

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

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

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(212, 168, 83, 0.1);
  }
  50% {
    border-color: rgba(212, 168, 83, 0.3);
  }
}

/* Loading spinner */
.loader {
  width: 40px;
  height: 40px;
  border: 3px solid var(--charcoal-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--charcoal) 25%,
    var(--charcoal-light) 50%,
    var(--charcoal) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border-radius: var(--border-radius);
}

/* --------------------------------------------------------------------------
   Gold Divider
   -------------------------------------------------------------------------- */
.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  margin: var(--space-3xl) 0;
  border: none;
}

/* --------------------------------------------------------------------------
   Tag / Chip styles
   -------------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.tag--solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Streaming platform links grid
   -------------------------------------------------------------------------- */
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  border: 1px solid rgba(245, 230, 200, 0.1);
  border-radius: var(--border-radius);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.platform-link:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.06);
  color: var(--gold);
}

.platform-link img,
.platform-link svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   9. Responsive Design (Mobile First)
   -------------------------------------------------------------------------- */

/* Breakpoint: Tablet (768px) */
@media (min-width: 768px) {

  .container {
    padding: 0 var(--space-2xl);
  }

  section {
    padding: var(--space-5xl) 0;
  }

  /* Nav */
  .navbar__toggle {
    display: none;
  }

  .navbar__links {
    display: flex;
  }

  /* Album */
  .album-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .album-info {
    text-align: left;
  }

  .album-info__meta {
    justify-content: flex-start;
  }

  .album-info__actions {
    justify-content: flex-start;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  /* Songs */
  .songs-grid {
    grid-template-columns: 1fr;
  }

  /* News */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Video */
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr 1.5fr;
  }

  .contact-info {
    text-align: left;
  }

  .contact-detail {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
  }

  .footer__brand {
    text-align: left;
  }

  .footer__column h4 {
    text-align: left;
  }

  .footer__column ul {
    text-align: left;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .footer__bottom {
    justify-content: space-between;
  }

  /* Song page */
  .song-page__cover {
    width: 240px;
    height: 240px;
  }
}

/* Breakpoint: Desktop (1024px) */
@media (min-width: 1024px) {

  /* Songs - can use a wider card feel */
  .songs-grid--list {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }

  .songs-grid--cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* News */
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Video */
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Merch */
  .merch-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Song page hero */
  .song-page__cover {
    width: 280px;
    height: 280px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  /* Player - full layout */
  .player .container {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

/* Small mobile adjustments */
@media (max-width: 767px) {

  :root {
    --nav-height: 60px;
    --player-height: 64px;
  }

  /* Nav */
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta-group .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Song card: simpler on mobile */
  .song-card {
    grid-template-columns: 40px 45px 1fr auto;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
  }

  .song-card__thumbnail {
    width: 45px;
    height: 45px;
  }

  .song-card__title {
    font-size: 0.9rem;
  }

  /* Player mobile */
  .player .container {
    grid-template-columns: 1fr auto;
  }

  .player__progress {
    display: none;
  }

  .player__volume {
    display: none;
  }

  .player__buttons {
    gap: var(--space-md);
  }

  .player__btn--shuffle,
  .player__btn--repeat {
    display: none;
  }

  /* Song page */
  .song-page__hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .song-page__cover {
    width: 180px;
    height: 180px;
  }

  .song-page__meta-details {
    justify-content: center;
  }

  /* Merch */
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .merch-card__body {
    padding: var(--space-md);
  }

  /* Contact form */
  .contact-form {
    padding: var(--space-lg);
  }

  /* Video */
  .video-card__play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------------------------------
   Accessibility: 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;
  }

  .reveal,
  .fade-in,
  .slide-up,
  .slide-left,
  .slide-right,
  .scale-in {
    opacity: 1;
    transform: none;
  }

  .shimmer,
  .shimmer-gold {
    animation: none;
    -webkit-text-fill-color: initial;
    background: none;
  }

  .shimmer {
    color: var(--cream);
  }

  .shimmer-gold {
    color: var(--gold);
  }

  .particle {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  body {
    background: white;
    color: black;
  }

  .navbar,
  .player,
  .hero__particles,
  .hero__scroll-indicator,
  .footer__social,
  .btn {
    display: none !important;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  h1, h2, h3, h4, h5, h6 {
    color: black;
  }

  p {
    color: #333;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-gold    { color: var(--gold); }
.text-cream   { color: var(--cream); }
.text-grey    { color: var(--grey-mid); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.08em; }

.bg-black     { background-color: var(--black); }
.bg-navy      { background-color: var(--navy); }
.bg-charcoal  { background-color: var(--charcoal); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

.py-1 { padding-top: var(--space-md);  padding-bottom: var(--space-md); }
.py-2 { padding-top: var(--space-xl);  padding-bottom: var(--space-xl); }
.py-3 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-4 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
.py-5 { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }

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

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aspect-square { aspect-ratio: 1; }
.aspect-video  { aspect-ratio: 16/9; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* Flex utilities */
.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.items-center  { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm        { gap: var(--space-sm); }
.gap-md        { gap: var(--space-md); }
.gap-lg        { gap: var(--space-lg); }
.gap-xl        { gap: var(--space-xl); }

/* Grid utility */
.grid          { display: grid; }
.grid-cols-2   { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3   { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4   { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   EXTENDED COMPONENT STYLES
   All missing classes for HTML pages - appended below
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: all;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-text {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s linear infinite;
}

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

/* --------------------------------------------------------------------------
   2. SECTION UTILITIES
   -------------------------------------------------------------------------- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title,
.section-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
}

.section__divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1rem auto 0;
  border: none;
}

.section-subtitle {
  color: var(--cream);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   3. ALBUM PREVIEW (index.html)
   -------------------------------------------------------------------------- */
.album-preview {
  padding: 6rem 0;
  position: relative;
}

.album-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.album-preview__artwork {
  position: relative;
}

.album-preview__image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.album-preview__image:hover {
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.25);
}

.album-preview__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.album-preview__description {
  color: var(--cream);
  line-height: 1.8;
  font-size: 1.05rem;
}

.album-preview__tagline {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.album-preview__platforms {
  display: flex;
  flex-direction: column;
}

.album-preview__platforms-title {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.album-preview__platforms-list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-smooth);
  font-size: 0.9rem;
}

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

.platform-link__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   4. FEATURED SONGS (index.html)
   -------------------------------------------------------------------------- */
.featured-songs {
  padding: 6rem 0;
  position: relative;
  background: rgba(13, 17, 23, 0.5);
}

.featured-songs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.song-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.song-card__description {
  color: var(--grey-mid);
  font-size: 0.85rem;
  line-height: 1.5;
}

.song-card__actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.song-card__play {
  color: var(--gold);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: transform var(--duration-fast) var(--ease-smooth);
  flex-shrink: 0;
}

.song-card__play:hover {
  transform: scale(1.15);
}

.song-card__link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.song-card__link:hover {
  color: var(--gold);
}

/* Override song-card layout for featured-songs context */
.featured-songs .song-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: unset;
}

.featured-songs .song-card .song-card__number {
  flex-shrink: 0;
  width: 40px;
}

/* --------------------------------------------------------------------------
   5. VIDEO TEASER (index.html)
   -------------------------------------------------------------------------- */
.video-teaser {
  padding: 6rem 0;
  position: relative;
}

.video-teaser__content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-teaser__embed {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--navy);
  max-width: 400px;
  margin: 0 auto;
}

.video-teaser__placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-teaser__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-teaser__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.4);
  transition: background var(--duration-normal) var(--ease-smooth);
}

.video-teaser__play-overlay:hover {
  background: rgba(10, 10, 10, 0.55);
}

.video-teaser__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--black);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.video-teaser__play-btn:hover {
  transform: scale(1.1);
}

.video-teaser__info {
  margin-top: 1rem;
}

.video-teaser__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--grey-mid);
  letter-spacing: 0.1em;
}

.video-teaser__video-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.3rem;
}

.video-teaser__description {
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
}

.video-teaser__content .video-teaser__label {
  margin-bottom: 0.25rem;
}

.video-teaser__content .video-teaser__video-title {
  margin-bottom: 1rem;
}

.video-teaser__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.video-teaser__secondary-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.08);
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

.video-teaser__secondary-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.video-teaser__secondary-thumbnail {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.video-teaser__secondary-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-teaser__secondary-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.5);
  color: var(--cream);
  opacity: 0.7;
}

.video-teaser__secondary-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
}

.video-teaser__secondary-info {
  padding: 0.75rem 1rem;
}

.video-teaser__secondary-info h4 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.video-teaser__secondary-info p {
  color: var(--grey-mid);
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .video-teaser__secondary {
    grid-template-columns: 1fr;
  }
}

.video-teaser__cta {
  margin-top: 2rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   6. ABOUT TEASER (index.html)
   -------------------------------------------------------------------------- */
.about-teaser {
  padding: 6rem 0;
  position: relative;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-teaser__image {
  position: relative;
}

.about-teaser__photo {
  width: 100%;
  border-radius: var(--border-radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-teaser__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-teaser__text {
  color: var(--cream);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   7. NEWSLETTER (index.html)
   -------------------------------------------------------------------------- */
.newsletter {
  padding: 6rem 0;
  position: relative;
  text-align: center;
}

.newsletter__content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 2rem;
}

.newsletter__subtitle {
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  flex-direction: row;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__input-group {
  display: flex;
  flex: 1;
}

.newsletter__input {
  width: 100%;
  padding: 1rem;
  background: rgba(13, 17, 23, 0.8);
  color: var(--cream);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.newsletter__input:focus {
  border-color: var(--gold);
}

.newsletter__input::placeholder {
  color: var(--grey-mid);
}

.newsletter__submit {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  font-weight: 700;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--duration-fast) var(--ease-smooth);
}

.newsletter__submit:hover {
  background: var(--gold-dark);
}

.newsletter__social {
  margin-top: 2rem;
}

.newsletter__social-label {
  font-size: 0.8rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.newsletter__social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   8. PLAYER BAR
   -------------------------------------------------------------------------- */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 900;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  display: none;
}

.player-bar.active {
  display: block;
}

.player-bar__container,
.player-bar-inner,
.player-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  align-items: center;
  padding: 0.5rem 2rem;
  height: 70px;
}

/* Homepage player: 4 columns (track, controls, progress, volume) */
.player-bar__container {
  grid-template-columns: minmax(150px, 1fr) auto 1fr auto;
  gap: 1rem;
}

/* Other pages: 3 columns (track, controls, progress) */
.player-bar-inner,
.player-inner {
  grid-template-columns: 1fr 2fr 1fr;
}

.player-bar__track-info,
.player-track-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.player-bar__thumbnail {
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.player-bar__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-bar__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.player-bar__title,
.player-track-title,
.player-track-name {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-bar__artist,
.player-track-artist,
.player-artist {
  color: var(--grey-mid);
  font-size: 0.75rem;
}

.player-bar__song-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--grey-mid);
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.player-bar__song-link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.player-bar__song-link svg {
  display: block;
}

.player-bar__controls,
.player-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.player-bar__btn,
.player-btn {
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.player-bar__btn:hover,
.player-btn:hover {
  color: var(--gold);
}

.player-bar__btn--play,
.player-btn-play {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.player-bar__progress,
.player-progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.player-bar__time,
.player-current-time,
.player-duration {
  font-size: 0.75rem;
  color: var(--grey-mid);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: center;
}

.player-bar__progress-bar,
.player-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.player-bar__progress-fill,
.player-progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 0;
  transition: width 100ms linear;
}

.player-bar__volume {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.player-bar__volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}

.player-bar__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   9. FOOTER ALIASES (flat naming for secondary pages)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  position: relative;
  padding-bottom: 100px;
}

.footer-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.footer-tagline {
  color: var(--grey-mid);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: var(--cream);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--grey-mid);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

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

.social-links--large .social-link {
  width: 50px;
  height: 50px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copy {
  color: var(--grey-mid);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   10. ALBUM PAGE (album.html)
   -------------------------------------------------------------------------- */
.album-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.album-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.album-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.album-hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.album-hero-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 4rem;
  letter-spacing: 0.06em;
}

.album-hero-art {
  margin: 2rem auto;
  max-width: 300px;
}

.album-art-placeholder {
  aspect-ratio: 1;
  background: var(--navy);
  border: 2px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.album-art-icon {
  color: var(--gold);
  width: 48px;
  height: 48px;
}

.album-art-text {
  color: var(--cream);
  font-size: 0.85rem;
}

.album-hero-subtitle {
  color: var(--cream);
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.album-description {
  padding: 4rem 2rem;
}

.album-description-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.album-description-text {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.9;
}

.tracklist {
  padding: 4rem 2rem;
  background: rgba(13, 17, 23, 0.5);
}

.tracklist-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.track-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.track-card:hover {
  background: rgba(26, 26, 46, 0.9);
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.08);
}

.track-card:hover::before {
  opacity: 1;
}

.track-number {
  font-family: var(--font-heading);
  color: rgba(212, 168, 83, 0.5);
  font-size: 0.9rem;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

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

.track-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.track-card:hover .track-title {
  color: var(--gold);
}

.track-tagline {
  color: var(--grey-mid);
  font-size: 0.85rem;
  font-style: italic;
}

.track-play-btn {
  width: 40px;
  height: 40px;
  color: rgba(212, 168, 83, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--duration-fast) var(--ease-smooth);
  padding: 0;
}

.track-play-btn:hover {
  color: var(--gold);
}

.streaming-section {
  padding: 4rem 2rem;
  text-align: center;
}

.streaming-inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.streaming-subtitle {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.streaming-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.streaming-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-smooth);
  background: transparent;
}

.streaming-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.streaming-spotify:hover {
  border-color: #1db954;
  color: #1db954;
}

.credits-section {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.credits-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.credit-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credit-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(212, 168, 83, 0.7);
  letter-spacing: 0.08em;
}

.credit-name {
  color: var(--cream);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. HISTORIA PAGE
   -------------------------------------------------------------------------- */
.bio-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.bio-intro-image {
  position: relative;
}

.bio-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bio-tagline {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
}

.bio-block {
  max-width: 800px;
  margin: 2rem auto;
}

.bio-block-accent {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.bio-block-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.bio-block p {
  color: var(--cream);
  line-height: 1.8;
}

.bio-quote {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.2);
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(212, 168, 83, 0.2);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 0 50% 3rem 0;
  position: relative;
}

.timeline-item--right {
  justify-content: flex-start;
  padding: 0 0 3rem 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  top: 0.5rem;
}

.timeline-content {
  max-width: 400px;
  padding: 1.5rem;
  background: rgba(13, 17, 23, 0.6);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 168, 83, 0.1);
  margin: 0 2rem;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.timeline-content p {
  color: var(--grey-mid);
  line-height: 1.6;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.final-quote {
  text-align: center;
  padding: 4rem 2rem;
}

.final-quote blockquote {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   12. VIDEOS PAGE
   -------------------------------------------------------------------------- */
.featured-video {
  padding: 2rem 0;
  text-align: center;
}

.featured-video-header {
  margin-bottom: 1.5rem;
}

.featured-video-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.featured-video-player {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--black);
  max-width: 400px;
  margin: 0 auto;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-video-description {
  margin-top: 1.5rem;
  color: var(--cream);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-card-thumbnail {
  aspect-ratio: 9 / 16;
  background: var(--navy);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.video-card-thumbnail:hover .video-card-overlay {
  opacity: 1;
}

.video-play-icon {
  color: var(--gold);
  width: 48px;
  height: 48px;
}

.video-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 168, 83, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(4px);
}

.video-card-info {
  padding: 1rem 0;
}

.video-card-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.video-card-desc {
  color: var(--grey-mid);
  font-size: 0.85rem;
}

.bts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bts-card {
  background: rgba(13, 17, 23, 0.6);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.06);
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

.bts-card:hover {
  border-color: rgba(212, 168, 83, 0.15);
}

.bts-card-info {
  padding: 1rem;
}

/* --------------------------------------------------------------------------
   13. MERCH PAGE
   -------------------------------------------------------------------------- */
.collab-banner {
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.collab-banner-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.collab-banner-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.collab-banner-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.collab-banner-desc {
  color: var(--grey-mid);
  line-height: 1.6;
}

.merch-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.merch-category-card {
  background: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.merch-category-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.merch-category-icon {
  color: var(--gold);
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.merch-category-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.merch-category-card p {
  color: var(--grey-mid);
  font-size: 0.85rem;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.product-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
}

.product-card-image {
  aspect-ratio: 1;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  z-index: 1;
}

.product-card-info {
  padding: 1.25rem;
}

.product-card-name {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.product-card-desc {
  color: var(--grey-mid);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.product-card-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.merch-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.merch-info-card {
  background: rgba(13, 17, 23, 0.6);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 83, 0.06);
}

.merch-info-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.merch-info-content {
  color: var(--cream);
  line-height: 1.7;
  font-size: 0.9rem;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.size-guide-table th {
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold);
  padding: 0.75rem;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  font-weight: 600;
}

.size-guide-table td {
  padding: 0.75rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.merch-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.merch-info-list li {
  padding: 0.5rem 0;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.merch-info-list li::before {
  content: "\2192";
  color: var(--gold);
  flex-shrink: 0;
}

.merch-info-note {
  color: var(--cream);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
}

.merch-note {
  padding: 2rem;
  text-align: center;
  background: rgba(13, 17, 23, 0.4);
  border-radius: var(--border-radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.merch-note p {
  color: var(--cream);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. NOTICIAS PAGE (flat naming aliases)
   -------------------------------------------------------------------------- */
.news-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 1.25rem;
}

.news-card-meta {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.news-card-date {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

.news-card-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-card-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.news-card:hover .news-card-title {
  color: var(--gold);
}

.news-card-excerpt {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

.news-card-link {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: text-decoration var(--duration-fast);
  display: inline-block;
  margin-top: 0.75rem;
}

.news-card-link:hover {
  text-decoration: underline;
}

.news-card--featured {
  grid-column: 1 / -1;
}

.news-card--featured .news-card-image {
  aspect-ratio: 21 / 9;
}

.newsletter-block {
  background: rgba(13, 17, 23, 0.6);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(212, 168, 83, 0.1);
}

.newsletter-content {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-desc {
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input-group {
  display: flex;
  flex: 1;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--black);
  color: var(--cream);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-input::placeholder {
  color: var(--grey-mid);
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: var(--grey-mid);
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   15. CONTACTO PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.contact-form-wrapper {
  background: rgba(13, 17, 23, 0.6);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 168, 83, 0.06);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--border-radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-mid);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a853' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(13, 17, 23, 0.6);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 168, 83, 0.06);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.contact-info-text h3 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--grey-mid);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-info-text a {
  color: var(--gold);
  text-decoration: none;
  transition: text-decoration var(--duration-fast);
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.contact-social {
  margin-top: 1rem;
}

.contact-social-title {
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-location {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(13, 17, 23, 0.4);
  border-radius: var(--border-radius);
}

.contact-location p {
  color: var(--cream);
  font-size: 0.85rem;
  line-height: 1.5;
}

.faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(13, 17, 23, 0.6);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 168, 83, 0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-smooth);
  text-align: left;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  color: var(--gold);
  transition: transform var(--duration-normal) var(--ease-smooth);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   16. SONG PAGES (canciones/)
   -------------------------------------------------------------------------- */
.song-hero {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.song-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.song-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.song-hero-track-number {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.song-hero-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 3rem;
  letter-spacing: 0.05em;
}

.song-hero-tagline {
  color: var(--cream);
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.song-hero-album-link {
  font-size: 0.85rem;
  color: rgba(245, 230, 200, 0.5);
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.song-hero-album-link:hover {
  color: var(--gold);
}

.song-story {
  padding: 4rem 2rem;
}

.song-story-inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.song-story h2 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.song-story-text {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.9;
}

.song-video {
  padding: 3rem 0;
}

.song-video-inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.song-video-player {
  margin-top: 1.5rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--black);
}

.song-video-player video {
  width: 100%;
  display: block;
  border-radius: var(--border-radius-lg);
}

.song-audio {
  padding: 2rem;
  background: rgba(13, 17, 23, 0.4);
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.song-audio-inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.song-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.song-play-btn:hover {
  transform: scale(1.1);
}

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

.song-audio-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
}

.song-audio-artist {
  color: var(--grey-mid);
  font-size: 0.85rem;
}

.song-audio-progress {
  margin-top: 0.75rem;
}

.song-audio-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.song-audio-progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 30%;
}

.song-lyrics {
  padding: 4rem 2rem;
}

.song-lyrics-inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.song-lyrics h2 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.lyrics-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lyrics-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lyrics-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(212, 168, 83, 0.7);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lyrics-section p {
  color: var(--cream);
  line-height: 1.8;
  font-size: 1rem;
}

.song-nav {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.song-nav-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.song-nav-prev {
  text-align: left;
}

.song-nav-next {
  text-align: right;
}

.song-nav-album {
  text-align: center;
  color: var(--gold);
  text-decoration: none;
  transition: text-decoration var(--duration-fast);
}

.song-nav-album:hover {
  text-decoration: underline;
}

.song-nav-prev a,
.song-nav-next a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.song-nav-prev a:hover,
.song-nav-next a:hover {
  color: var(--gold);
}

.song-nav-label {
  font-size: 0.75rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.song-nav-title {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.song-nav-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   17. IMAGE PLACEHOLDERS
   -------------------------------------------------------------------------- */
.image-placeholder {
  background: linear-gradient(135deg, var(--charcoal), #16213e);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  aspect-ratio: 1;
  overflow: hidden;
}

.image-placeholder--portrait {
  aspect-ratio: 3 / 4;
}

.image-placeholder--gallery {
  aspect-ratio: auto;
  min-height: 200px;
}

.image-placeholder--video {
  aspect-ratio: 16 / 9;
}

.image-placeholder--bts {
  aspect-ratio: 4 / 3;
}

.image-placeholder--product {
  aspect-ratio: 1;
}

.image-placeholder--news {
  aspect-ratio: 16 / 9;
}

.image-placeholder--news-featured {
  aspect-ratio: 21 / 9;
}

.image-placeholder-icon {
  color: rgba(212, 168, 83, 0.5);
  width: 40px;
  height: 40px;
}

.image-placeholder-text {
  color: var(--grey-mid);
  font-size: 0.8rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   18. BUTTON VARIANTS
   -------------------------------------------------------------------------- */
.btn--secondary {
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--cream);
  background: transparent;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-weight: 700;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.btn--gold:hover {
  background: var(--gold-dark);
}

.btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   19. MISC UTILITIES
   -------------------------------------------------------------------------- */
.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;
}

.hero--page {
  min-height: 40vh;
}

.hero--page canvas,
.hero--page #particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Hero aliases for flat naming on sub-pages */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img,
.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 3.5rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--cream);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
  border: none;
}

.fade-in-delay {
  animation-delay: 200ms;
}

.fade-in-delay-2 {
  animation-delay: 400ms;
}

.icon-play,
.icon-pause {
  display: inline;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .album-preview__grid,
  .bio-intro,
  .contact-grid,
  .about-teaser__grid {
    grid-template-columns: 1fr;
  }

  .featured-songs__grid {
    grid-template-columns: 1fr;
  }

  .merch-categories-grid {
    grid-template-columns: 1fr;
  }

  .merch-info-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item--right {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    margin: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .song-nav-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .song-nav-prev,
  .song-nav-next {
    text-align: center;
  }

  .song-hero-title {
    font-size: 2rem;
  }

  .album-hero-title {
    font-size: 2.5rem;
  }

  .newsletter__form,
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter__input,
  .newsletter-input {
    border-radius: var(--border-radius);
  }

  .newsletter__submit {
    border-radius: var(--border-radius);
  }

  .player-bar__container,
  .player-bar-inner,
  .player-inner {
    grid-template-columns: 1fr auto;
    padding: 0.5rem 1rem;
  }

  .player-bar__volume {
    display: none;
  }

  .player-bar__song-link {
    width: 28px;
    height: 28px;
  }

  .news-card--featured {
    grid-column: span 1;
  }

  .news-card--featured .news-card-image {
    aspect-ratio: 16 / 9;
  }

  .streaming-links {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section__title,
  .section-title {
    font-size: 2rem;
  }

  .bio-intro-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .song-audio-inner {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* ============================================================
   ALBUM COVER WITH TITLE OVERLAY
   ============================================================ */
.album-cover-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(191,155,48,0.15);
}

.album-hero-art .album-cover-container {
  max-width: 320px;
}

.album-cover-container .album-preview__image,
.album-cover-container .album-cover-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.album-cover-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.5) 100%
  );
  pointer-events: none;
}

.album-cover-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: #BF9B30;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow:
    0 0 20px rgba(191,155,48,0.4),
    0 0 40px rgba(191,155,48,0.2),
    0 2px 4px rgba(0,0,0,0.8);
  text-align: center;
  line-height: 1.2;
}

/* ============================================================
   ALBUM COVER HOVER VIDEO
   ============================================================ */
.album-cover-container {
  cursor: pointer;
}

.album-cover-container .album-cover-image,
.album-cover-container .album-preview__image {
  transition: opacity 0.8s ease;
}

.album-cover-container.video-playing .album-preview__image {
  opacity: 0;
}

.album-cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.album-cover-container.video-playing .album-cover-video {
  opacity: 1;
}

.album-cover-container.video-playing .album-cover-image {
  opacity: 0;
}

.album-cover-video-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: #BF9B30;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow:
    0 0 20px rgba(191,155,48,0.4),
    0 0 40px rgba(191,155,48,0.2),
    0 2px 4px rgba(0,0,0,0.8);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.4) 100%
  );
}

.album-cover-container.video-playing .album-cover-video-title {
  opacity: 1;
}

.album-cover-video-title.fade-out {
  opacity: 0 !important;
  transition: opacity 1.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .album-cover-video,
  .album-cover-video-title {
    display: none;
  }
}

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */
.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
  filter: brightness(0.5);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}

.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__scroll-indicator {
  position: absolute;
  z-index: 3;
}

/* ============================================================
   SPA NAVIGATION TRANSITIONS
   ============================================================ */
#spa-content {
  transition: opacity 0.3s ease;
}
#spa-content.spa-loading {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   SONG HERO BACKGROUND IMAGE
   ============================================================ */
.song-hero {
  position: relative;
  overflow: hidden;
}

.song-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(2px) brightness(0.6);
  z-index: 0;
}

.song-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.song-hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   VIDEO ELEMENT STYLING
   ============================================================ */
.video-teaser__video-element,
.featured-video .video-element {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: #111;
  aspect-ratio: 9/16;
  object-fit: contain;
}

.featured-video-player {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.featured-video-player video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* ============================================================
   BIO PORTRAIT IMAGE
   ============================================================ */
.bio-intro-image {
  overflow: hidden;
  border-radius: 8px;
}

.bio-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s ease;
}

.bio-intro-image:hover .bio-portrait-image {
  transform: scale(1.05);
}

/* ============================================================
   GALLERY WITH REAL IMAGES
   ============================================================ */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ============================================================
   VIDEO CARD REAL IMAGES
   ============================================================ */
.video-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-card-thumbnail img {
  transform: scale(1.05);
}

.video-card-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}

/* ============================================================
   BTS CARD IMAGES
   ============================================================ */
.bts-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: transform 0.5s ease;
}

.bts-card:hover img {
  transform: scale(1.05);
}

/* ============================================================
   ABOUT TEASER REAL PHOTO
   ============================================================ */
.about-teaser__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ============================================================
   PLAYER BAR - ENSURE VISIBILITY
   ============================================================ */
.player-bar.active {
  transform: translateY(0);
  opacity: 1;
}

/* Ensure player bar thumbnail uses album cover correctly */
.player-bar__thumb-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   HIDDEN TRACKS SYSTEM
   ============================================================ */
[data-hidden-track="true"] {
  display: none !important;
}
body.leon-unlocked [data-hidden-track="true"] {
  display: flex !important;
}
body.leon-unlocked .video-card[data-hidden-track="true"] {
  display: block !important;
}

/* Footer unlock UI */
.footer-unlock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  vertical-align: middle;
}
.footer-unlock__btn {
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.25;
  font-size: 12px;
  padding: 2px;
  transition: opacity 0.3s;
  color: inherit;
}
.footer-unlock__btn:hover {
  opacity: 0.6;
}
.footer-unlock__form {
  display: none;
  align-items: center;
  gap: 6px;
}
.footer-unlock__form.active {
  display: inline-flex;
}
.footer-unlock__input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 3px;
  width: 120px;
  font-family: inherit;
}
.footer-unlock__input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer-unlock__submit {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold, #c9a84c);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}
.footer-unlock__submit:hover {
  background: rgba(201,168,76,0.4);
}
.footer-unlock__msg {
  font-size: 11px;
  opacity: 0.6;
}
