:root {
  --bg: #0a0a0c;
  --bg-alt: #0f1014;
  --card: rgba(255, 255, 255, 0.04);
  --text: #f2f3f5;
  --muted: #8b90a0;
  --accent: #e8eaef;
  --accent-2: #7ec8e3;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --blur: blur(20px);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --radius: 14px;
  --nav-height: 64px;
}

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

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); }

/* ----- Header / Nav ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding: 0 6vw;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}

.nav-socials a.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-socials a.nav-social-icon:hover {
  color: var(--text);
  transform: scale(1.1);
}

.nav-socials a.nav-social-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-socials { display: none; }
  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .logo-img {
    height: 32px;
    max-width: 140px;
  }
}

/* ----- Bannière hero (style cinéma N&B, overlay sombre, typo centrée) ----- */
.hero-banner {
  position: relative;
  min-height: 100vh;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero-banner-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("images/bg-image.jpeg") center/cover no-repeat;
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: url("images/bg-image-mobile.jpeg");
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 35%,
    rgba(0, 0, 0, 0.75) 70%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 6vw;
}

.hero-logo {
  margin-bottom: 1.25rem;
}

.hero-logo-img {
  display: block;
  width: clamp(72px, 12vw, 120px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-name {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 20%,
    #1a1a1a 45%,
    #404040 65%,
    #707070 80%,
    #a8a8a8 92%,
    #e0e0e0 98%,
    #fff 100%
  );
  pointer-events: none;
}

/* Bande dégradé blanc → noir (continuité après la hero) */
.hero-gradient-down {
  height: 200px;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #e8e8e8 8%,
    #c0c0c0 25%,
    #888 50%,
    #404040 75%,
    #1a1a1a 92%,
    var(--bg) 100%
  );
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  z-index: 3;
}

.scroll-hint::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(6px); }
}

/* ----- Page hero (sous-pages) ----- */
.page-hero {
  margin-top: var(--nav-height);
  padding: 100px 6vw 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-hero-inner .tagline {
  color: var(--muted);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Sections ----- */
.section {
  padding: 80px 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  margin-top: 8px;
}

.link {
  font-weight: 600;
  color: var(--accent-2);
}

.link:hover { color: var(--text); text-decoration: underline; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--muted); }

/* ----- Music section (accueil) ----- */
/* Section Vidéos (page d'accueil) */
.section-videos {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-videos .section-head {
  margin-bottom: 8px;
}

.section-videos .grid {
  margin-top: 32px;
}

.section-music .player {
  margin-top: 32px;
}

/* ----- Player ----- */
.player {
  background: var(--card);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.player-info {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

/* Quand le lecteur utilise le style album (waveform + temps) — page d'accueil : pleine largeur */
.player .album-player {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  max-width: none;
  width: 100%;
}

.player-controls {
  display: grid;
  grid-template-columns: repeat(3, 48px) 1fr;
  align-items: center;
  gap: 14px;
}

.player-controls button {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.player-controls button:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.progress {
  background: rgba(255, 255, 255, 0.08);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-2);
  transition: width 0.1s linear;
}

.playlist {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.playlist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease;
}

.playlist li:last-child { border-bottom: none; }

.playlist li:hover,
.playlist li.active { color: var(--text); }

.playlist.hidden { display: none; }

/* ----- Grid (filmographie) ----- */
.grid {
  margin-top: 24px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(255, 255, 255, 0.02);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.card-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.card-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.card-title h3 { font-size: 1.15rem; font-weight: 600; }

.card-title span { color: var(--muted); font-size: 0.9rem; }

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

.card-body h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  color: var(--muted);
}

.track-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: grid;
  gap: 12px;
}

.track-list li { display: grid; gap: 6px; }

.track-list audio { width: 100%; height: 40px; }

/* ----- Music page grid ----- */
.music-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.music-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.music-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.music-card-body {
  padding: 20px;
}

.music-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.music-card-body audio { width: 100%; height: 40px; }

/* ----- Bio ----- */
.bio {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.bio img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.bio .lead { margin-bottom: 20px; color: var(--muted); line-height: 1.7; }

.timeline {
  list-style: none;
  color: var(--text);
}

.timeline li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
}

.bio-page .lead { font-size: 1.05rem; }

@media (max-width: 900px) {
  .bio { grid-template-columns: 1fr; }
  .bio img { max-width: 280px; margin: 0 auto; display: block; }
}

/* ----- Contact ----- */
.section-contact { text-align: center; padding-top: 60px; padding-bottom: 100px; }

.contact-block {
  display: inline-block;
  padding: 32px 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: var(--blur);
}

.contact-block p { font-size: 1.1rem; color: var(--muted); }

.contact-block a {
  color: var(--accent-2);
  font-weight: 600;
}

.contact-block a:hover { color: var(--text); text-decoration: underline; }

/* ----- Footer ----- */
.footer {
  padding: 24px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: var(--blur);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}

/* ----- Modal (legacy, si utilisé ailleurs) ----- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 200;
}

.modal.hidden { display: none; }

.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(1100px, 95vw);
  max-height: 90vh;
  overflow: auto;
  position: relative;
  padding: 24px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }

.modal-video { margin-top: 10px; }

@media (max-width: 900px) {
  .modal-body { grid-template-columns: 1fr; }
}

/* ----- Page Filmographie (grille posters sur fond noir) ----- */
.filmography-page {
  background: #000;
}

.filmography-main {
  padding-top: var(--nav-height);
  padding-bottom: 60px;
  min-height: 100vh;
}

.film-posters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 6vw;
}

.film-poster-card {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.film-poster-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.film-poster-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-size: cover;
  background-position: center;
}

.film-poster-awards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1;
}

.film-award {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

.film-poster-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 1;
}

.film-poster-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.film-poster-year {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Modal détail film */
.film-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.film-modal.hidden { display: none; }

.film-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.film-modal-content {
  position: relative;
  width: min(900px, 95vw);
  max-height: 90vh;
  overflow: auto;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.film-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.film-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.film-modal-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.film-modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.film-modal-body {
  padding: 24px;
}

.film-modal-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.film-modal-body h3 span {
  color: var(--muted);
  font-weight: 400;
}

.film-modal-body p {
  color: var(--muted);
  margin-bottom: 16px;
}

.film-modal-body h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .film-posters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 560px) {
  .film-posters-grid { grid-template-columns: 1fr; }
}

/* ----- Page Musique (style deux colonnes, albums, waveform) ----- */
.music-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  padding-bottom: 80px;
}

.music-page-title {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 48px 0 56px;
}

.music-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
}

.music-album {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.album-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  align-self: flex-start;
}

.album-cover {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a1b1f 0%, #25262c 50%, #1c1d21 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.album-tracklist {
  list-style: none;
  width: 100%;
  max-width: 320px;
  padding: 0;
  margin: 0 0 20px;
}

.album-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.album-track:hover,
.album-track.active { color: var(--text); }

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

.album-track.active .track-duration { color: var(--text); }

.album-player {
  width: 100%;
  max-width: 320px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}

.player-waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 36px;
  margin-bottom: 10px;
}

.player-waveform span {
  width: 4px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transform-origin: bottom;
  transition: background 0.15s ease;
}

.album-player.is-playing .player-waveform span {
  animation: waveform 0.6s ease-in-out infinite alternate;
}

.album-player.is-playing .player-waveform span:nth-child(1) { animation-delay: 0s; }
.album-player.is-playing .player-waveform span:nth-child(2) { animation-delay: 0.05s; }
.album-player.is-playing .player-waveform span:nth-child(3) { animation-delay: 0.1s; }
.album-player.is-playing .player-waveform span:nth-child(4) { animation-delay: 0.15s; }
.album-player.is-playing .player-waveform span:nth-child(5) { animation-delay: 0.2s; }
.album-player.is-playing .player-waveform span:nth-child(6) { animation-delay: 0.25s; }
.album-player.is-playing .player-waveform span:nth-child(7) { animation-delay: 0.3s; }
.album-player.is-playing .player-waveform span:nth-child(8) { animation-delay: 0.35s; }
.album-player.is-playing .player-waveform span:nth-child(9) { animation-delay: 0.4s; }
.album-player.is-playing .player-waveform span:nth-child(10) { animation-delay: 0.45s; }
.album-player.is-playing .player-waveform span:nth-child(11) { animation-delay: 0.5s; }
.album-player.is-playing .player-waveform span:nth-child(12) { animation-delay: 0.55s; }
.album-player.is-playing .player-waveform span:nth-child(13) { animation-delay: 0.6s; }
.album-player.is-playing .player-waveform span:nth-child(14) { animation-delay: 0.65s; }
.album-player.is-playing .player-waveform span:nth-child(15) { animation-delay: 0.7s; }
.album-player.is-playing .player-waveform span:nth-child(16) { animation-delay: 0.75s; }

@keyframes waveform {
  from { transform: scaleY(0.4); background: rgba(255, 255, 255, 0.4); }
  to   { transform: scaleY(1); background: rgba(255, 255, 255, 0.7); }
}

.player-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.player-controls-row .btn-prev,
.player-controls-row .btn-next {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.2s ease;
}

.player-controls-row .btn-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-controls-row .btn-play:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.player-controls-row .btn-prev:hover,
.player-controls-row .btn-next:hover { color: var(--text); }

@media (max-width: 900px) {
  .music-columns { grid-template-columns: 1fr; }
  .music-page-title { margin: 36px 0 40px; }
}
