﻿:root {
  color-scheme: dark;
  --bg: #0b1b28;
  --surface: #112735;
  --text: #f4eee5;
  --muted: #b8c5cc;
  --gold: #edbe88;
  --line: #ffffff20;
  --gutter: clamp(20px, 6vw, 88px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: 
    radial-gradient(ellipse 90% 500px at 75% 550px, rgba(237, 190, 136, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 80% 800px at 20% 1100px, rgba(23, 56, 82, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 80% 900px at 85% 1900px, rgba(28, 62, 90, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, 
      #0b1b28 0%, 
      #081724 350px, 
      #0a1d2e 900px, 
      #071622 1700px, 
      #091c2b 2600px, 
      #06111a 100%
    );
  background-repeat: no-repeat;
  color: var(--text);
  font: 16px/1.6 Arial, sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button, select {
  font: inherit;
}

a, button, select, summary {
  touch-action: manipulation;
}

a:focus-visible, button:focus-visible, select:focus-visible, summary:focus-visible, audio:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

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

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff);
  z-index: 9999;
  width: 0%;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 8px var(--gutter);
  background: rgba(11, 27, 40, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: auto;
  height: 80px;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease;
}

.brand:hover img {
  transform: scale(1.04);
}

footer .brand img {
  height: 68px;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

header nav {
  align-items: center;
}

header nav a {
  padding: 10px 0;
}

nav a:hover, footer a:hover {
  color: var(--gold);
}

nav span {
  color: var(--gold);
  margin-left: 6px;
}

.language-toggle {
  min-height: 44px;
  max-width: 140px;
  padding: 8px 10px;
  border: 1px solid #edbe8860;
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
}

.language-toggle:hover {
  border-color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  background: transparent;
}

.landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.35) 72%, transparent 88%);
  mask-image: linear-gradient(180deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.35) 72%, transparent 88%);
}

.shade {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(5, 19, 31, 0.95) 0%, rgba(5, 19, 31, 0.8) 42%, rgba(5, 19, 31, 0.3) 75%, rgba(5, 19, 31, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 22, 34, 0.75) 0%, transparent 22%, transparent 45%, rgba(8, 22, 34, 0.45) 70%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.35) 72%, transparent 88%);
  mask-image: linear-gradient(180deg, #000 0%, #000 35%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.35) 72%, transparent 88%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  padding: 84px var(--gutter) 120px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .17em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 20px;
}

h1, h2, h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 28px;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.16;
  margin: 0;
  letter-spacing: -.025em;
}

h3 {
  font-size: 23px;
  line-height: 1.3;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}

.intro {
  color: #e4e8e8;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 32px;
}

.cta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--gold);
  color: #102330;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
}

.cta:hover {
  background: #ffcf9a;
}

.cta span {
  font-size: 12px;
}

.hero-foot {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #d6dfe3;
  font-size: 12px;
  letter-spacing: .08em;
}

/* Music Section */
.music {
  padding: 80px var(--gutter) 16px;
  max-width: 1440px;
  margin: auto;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
}

.section-top .eyebrow {
  margin-bottom: 12px;
}

.section-top > p {
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}

.section-top > p span {
  color: var(--muted);
}

.album-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 72px;
}

.album-nav .album-jump {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  gap: 24px;
  min-width: 0;
  box-shadow: 0 12px 35px #0002;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
}

.album-nav .album-jump:hover {
  border-color: var(--gold);
  background: #173140;
}

.album-jump > img {
  width: clamp(90px, 11vw, 144px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 24px #0005;
}

.album-jump > span {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.album-jump strong {
  font: clamp(26px, 2.5vw, 38px)/1.15 Georgia, serif;
  color: var(--text);
  overflow-wrap: anywhere;
}

.album-jump small {
  font-size: 12px;
  letter-spacing: .07em;
  color: var(--muted);
}

.album-jump .jump-listen {
  font-size: 14px;
  letter-spacing: 0;
  margin: 2px 0 0;
  color: var(--gold);
}

.album-nav > a[href="#autres"] {
  grid-column: 1/-1;
  justify-self: start;
  border: 0;
  border-bottom: 1px solid #edbe8870;
  border-radius: 0;
  padding: 8px 0;
  min-height: 44px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}

.album {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: 80px;
  scroll-margin-top: 28px;
}

.album-heading {
  align-self: start;
  position: sticky;
  top: 28px;
  min-width: 0;
}

#autres .album-heading > div {
  grid-column: 1/-1;
}

.album-art {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 42px #0005;
  margin-bottom: 26px;
}

.album-heading .eyebrow {
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.album-heading h2 {
  font-size: 42px;
  overflow-wrap: anywhere;
}

.album-heading p:last-of-type {
  color: var(--muted);
  margin: 10px 0 16px;
}

.melancolie-art {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 42px #0005;
  margin-bottom: 26px;
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

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

.album-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 14px 0 18px;
}

.album-download, .album-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #edbe8860;
  border-radius: 6px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex-wrap: wrap;
}

.album-download:hover {
  background: #edbe8818;
  color: var(--text);
}

.album-buy {
  background: var(--gold);
  border-color: var(--gold);
  color: #102330;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(237, 190, 136, 0.25);
  transition: all 0.2s ease;
}

.album-buy:hover {
  background: #ffd4a2;
  border-color: #ffd4a2;
  color: #102330;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(237, 190, 136, 0.35);
}

.album-buy .pill {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
  color: inherit !important;
  font-weight: inherit !important;
}

.album-download {
  border: 0;
  border-bottom: 1px solid #edbe8840;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.album-booklet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(237, 190, 136, 0.4);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(237, 190, 136, 0.08);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s ease;
}

.album-booklet-badge:hover {
  background: rgba(237, 190, 136, 0.2);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.album-booklet-badge .booklet-icon {
  font-size: 15px;
}

.tracks {
  min-width: 0;
}

.track {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  column-gap: 20px;
  row-gap: 12px;
  border-top: 1px solid var(--line);
  padding: 24px 18px;
  border-radius: 8px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.track:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(4px);
}

.track:last-child {
  border-bottom: 1px solid var(--line);
}

.track.is-playing {
  background: linear-gradient(90deg, rgba(237, 190, 136, 0.12) 0%, rgba(17, 39, 53, 0.5) 100%);
  border-top-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 3px 0 0 var(--gold);
  transform: translateX(6px);
}

.track.is-playing .cover {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  box-shadow: 0 0 12px rgba(237, 190, 136, 0.5);
}

.track.is-playing h3::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 14px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23edbe88'%3E%3Crect x='1' y='6' width='4' height='12' rx='2'%3E%3Canimate attributeName='height' values='6;16;8;14;6' dur='1.2s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='9;4;8;5;9' dur='1.2s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='7' y='3' width='4' height='18' rx='2'%3E%3Canimate attributeName='height' values='14;6;18;8;14' dur='1.1s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='5;9;3;8;5' dur='1.1s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='13' y='5' width='4' height='14' rx='2'%3E%3Canimate attributeName='height' values='8;18;6;14;8' dur='0.95s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='8;3;9;5;8' dur='0.95s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='19' y='8' width='4' height='8' rx='2'%3E%3Canimate attributeName='height' values='6;12;4;10;6' dur='1.3s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='9;6;10;7;9' dur='1.3s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
}

.cover {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  grid-column: 1;
  grid-row: 1;
}

.cover.melancolie-art {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0;
  box-shadow: none;
}

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

.track-body {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

.track-body h3 {
  letter-spacing: -.015em;
}

.track-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}

.track-body p span {
  margin: 0 6px;
}

/* In-track Custom Player & Actions */
audio {
  display: none;
}

.track-player-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}

.custom-player {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 280px;
  max-width: 480px;
  height: 52px;
  padding: 0 30px 0 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(237, 190, 136, 0.2);
  border-radius: 8px;
  margin: 0;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.track:hover .custom-player {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(237, 190, 136, 0.4);
}

.track.is-playing .custom-player {
  background: rgba(237, 190, 136, 0.1);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(237, 190, 136, 0.15);
}

.track-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin: 0;
}

.track-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px 0 18px;
  border: 1px solid rgba(237, 190, 136, 0.35);
  border-radius: 8px;
  background: rgba(17, 39, 53, 0.7);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  user-select: none;
}

.track-buy .pill {
  min-height: auto !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  background: var(--gold) !important;
  color: #102330 !important;
  font-weight: 700 !important;
  margin-right: 2px !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.track-buy:hover {
  background: rgba(237, 190, 136, 0.2);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 190, 136, 0.25);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 32px 0 18px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  white-space: nowrap;
  user-select: none;
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 32px 0 18px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--gold);
  border: 1px solid rgba(237, 190, 136, 0.45);
  background: rgba(237, 190, 136, 0.1);
  font-weight: 600;
  white-space: nowrap;
  user-select: none;
}

.bonus-album-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 32px 0 18px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--gold);
  border: 1px dashed rgba(237, 190, 136, 0.4);
  background: rgba(237, 190, 136, 0.05);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.bonus-album-link:hover {
  background: rgba(237, 190, 136, 0.15);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.track:hover .custom-player {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(237, 190, 136, 0.4);
}

.track.is-playing .custom-player {
  background: rgba(237, 190, 136, 0.1);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(237, 190, 136, 0.15);
}

.track-btn-play {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: #102330;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(237, 190, 136, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.track-btn-play:hover {
  transform: scale(1.08);
  background: #ffd4a2;
  box-shadow: 0 6px 16px rgba(237, 190, 136, 0.45);
}

.track-btn-play .icon-pause {
  display: none;
}

.track.is-playing .track-btn-play .icon-play {
  display: none;
}

.track.is-playing .track-btn-play .icon-pause {
  display: block;
}

.track-visual-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  width: 15px;
  flex-shrink: 0;
}

.track-visual-equalizer span {
  width: 3px;
  height: 4px;
  background: var(--gold);
  border-radius: 1.5px;
  transition: height 0.2s ease;
}

.track.is-playing .track-visual-equalizer span:nth-child(1) {
  animation: eqBar 0.9s ease-in-out infinite alternate;
}
.track.is-playing .track-visual-equalizer span:nth-child(2) {
  animation: eqBar 1.2s ease-in-out 0.2s infinite alternate;
}
.track.is-playing .track-visual-equalizer span:nth-child(3) {
  animation: eqBar 0.8s ease-in-out 0.4s infinite alternate;
}

@keyframes eqBar {
  0% { height: 3px; }
  100% { height: 16px; }
}

.track-seeker {
  flex: 1;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.track-seeker-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.track-seeker-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #fff);
  border-radius: 3px;
  transition: width 0.08s linear;
}

.track:hover .track-seeker-bar {
  background: rgba(255, 255, 255, 0.2);
}

.track-timer {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 76px;
  text-align: right;
  padding-right: 4px;
}

#audio-status {
  color: var(--gold);
}

/* Shop Section */
.shop {
  padding: 72px var(--gutter);
  background: var(--surface);
  border-block: 1px solid var(--line);
  text-align: center;
}

.shop > h2, .shop > .eyebrow, .shop > p, .shop > .album-gift, .shop > .shop-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.shop .shop-intro {
  max-width: 680px;
  color: var(--muted);
  margin-top: 22px;
  margin-bottom: 28px;
  font-size: 15px;
  border: 1px solid #edbe8838;
  padding: 16px 20px;
  border-radius: 6px;
  background: #0b1b2866;
}

.album-gift {
  display: flex;
  gap: 8px 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: #edbe880c;
  border: 1px solid #edbe8830;
  border-radius: 6px;
  text-align: left;
}

.album-gift strong {
  color: var(--gold);
}

.album-gift span {
  color: var(--text);
  font-size: 15px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 28px;
}

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  text-align: left;
  min-width: 0;
  transition: border-color .2s, transform .2s;
}

.shop-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.shop-artwork {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 174px;
  padding: 4px 0 24px;
  border-bottom: 1px solid var(--line);
}

.shop-artwork > .album-art, .shop-artwork > .melancolie-art {
  width: 148px;
  height: 148px;
  max-width: 100%;
  margin: 0;
  border-radius: 4px;
}

.shop-artwork.is-double > .album-art, .shop-artwork.is-double > .melancolie-art {
  width: calc(50% - 6px);
  max-width: 128px;
  height: auto;
  aspect-ratio: 1;
}

.shop-card h3 {
  font-size: 27px;
  margin: 0;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 2px 0 4px;
}

.original-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.original-price del {
  text-decoration: line-through;
  opacity: 0.75;
}

.savings-pill {
  display: inline-block;
  padding: 2px 7px;
  background: rgba(237, 190, 136, 0.16);
  border: 1px solid rgba(237, 190, 136, 0.45);
  color: var(--gold);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-comparison {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: -6px;
  margin-bottom: 2px;
  line-height: 1.4;
}

.badge-saving {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 35, 48, 0.85);
  color: var(--gold);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(237, 190, 136, 0.4);
  margin-left: 6px;
  vertical-align: middle;
}

.extra-explanation {
  font-size: 14px;
  color: var(--muted);
  margin: 10px 0 16px;
  line-height: 1.6;
}

.bonus-album-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
  min-height: 38px;
}

.bonus-album-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.dock-buy-bonus {
  background: linear-gradient(135deg, rgba(237, 190, 136, 0.25), rgba(237, 190, 136, 0.1)) !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}

.dock-buy-bonus .pill {
  background: var(--gold) !important;
  color: #102330 !important;
}

.shop-card strong {
  font: 32px/1.2 Georgia, serif;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.package-description {
  font-size: 16px;
  color: var(--muted);
}

.shop-card .bonus {
  font-size: 14px;
  color: var(--gold);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 9px 14px;
  font-size: 14px;
  color: #102330;
  background: var(--gold);
  font-weight: 600;
}

.shop-card .pill {
  margin-top: auto;
}

.shop-card:hover .pill {
  background: #ffd4a2;
}

.shop-note {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  text-align: left;
}

.shop #offer-double {
  border-color: #edbe8870;
  background: linear-gradient(155deg, #193340, #0b1b28 70%);
}

.shop-card-bonus {
  background: linear-gradient(180deg, rgba(237, 190, 136, 0.08) 0%, var(--bg) 100%);
  border: 1px dashed rgba(237, 190, 136, 0.45);
  position: relative;
}

.shop-card-bonus:hover {
  border-color: var(--gold);
  border-style: solid;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(237, 190, 136, 0.2);
}

.bonus-badge-icon {
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -4px;
}

.bonus-highlight {
  font: 26px/1.2 Georgia, serif;
  color: var(--gold);
}

.pill-bonus {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  cursor: default;
}

.shop-card-bonus:hover .pill-bonus {
  background: rgba(237, 190, 136, 0.15) !important;
  color: var(--gold) !important;
}

/* Legal Information */
.legal {
  max-width: 1376px;
  margin: auto;
  padding: 72px var(--gutter);
}

.legal > h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.legal-intro, .legal-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.legal details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #11273570;
}

.legal summary {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  list-style-position: inside;
}

.legal summary::marker {
  color: var(--gold);
}

.legal details[open] {
  border-color: #edbe8860;
}

.legal details[open] summary {
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}

.legal details > div {
  padding: 6px 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
}

.legal details p {
  margin: 16px 0 0;
}

.legal details a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  color: var(--text);
}

.legal-note {
  font-size: 13px;
  margin-top: 24px;
}

/* Footer */
footer {
  padding: 28px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  border-top: 1px solid var(--line);
}

footer .brand img {
  width: auto;
  height: 84px;
  max-width: 190px;
}

footer p, footer > a:last-of-type {
  font-size: 14px;
  color: var(--muted);
}

.footer-contact {
  font-size: 14px;
  color: var(--muted);
}

.footer-contact a {
  color: var(--gold);
  transition: color 0.2s ease;
}

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

.legal-links {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.legal-links a {
  color: var(--muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.test-confirmation {
  max-width: 900px;
  margin: 24px auto;
  padding: 32px;
  border: 1px solid #edbe8860;
  background: var(--surface);
  border-radius: 6px;
}

.test-confirmation h2 {
  margin: 8px 0 18px;
}

.test-confirmation p {
  color: var(--muted);
}

.test-confirmation strong {
  color: var(--text);
}

.bonus-confirmation {
  margin: 20px 0;
  padding: 16px;
  border-left: 3px solid var(--gold);
}

.bonus-confirmation strong, .bonus-confirmation a {
  color: var(--gold);
}



@media (max-width: 900px) {
  .album {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 30px;
  }
  .album-heading h2 {
    font-size: 36px;
  }
  .shop-grid {
    gap: 14px;
  }
  .shop-card {
    padding: 18px;
  }
  .shop-card h3 {
    font-size: 24px;
  }
  .shop-artwork > .album-art, .shop-artwork > .melancolie-art {
    width: 120px;
    height: 120px;
  }
  .shop-artwork {
    min-height: 145px;
  }
  .section-top {
    align-items: start;
  }
  .section-top > p {
    max-width: 300px;
  }
  .album-nav .album-jump {
    padding: 18px;
    gap: 16px;
  }
  .album-jump > img {
    width: 100px;
  }
  .album-jump strong {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  header {
    gap: 16px;
    grid-template-columns: 1fr auto;
    min-height: 80px;
  }
  .brand img {
    width: auto;
    height: 72px;
    max-width: 160px;
  }
  header nav {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 2px;
    gap: 12px;
  }
  header .language-toggle {
    grid-column: 2;
    grid-row: 1;
  }
  .hero {
    min-height: 540px;
  }
  .hero-copy {
    padding: 64px var(--gutter) 106px;
  }
  .hero-copy > .eyebrow {
    max-width: 310px;
    line-height: 1.8;
    letter-spacing: .12em;
  }
  .landscape {
    object-position: 60% center;
  }
  .shade {
    background: linear-gradient(90deg, #05131fe0, #05131f55),
                linear-gradient(0deg, #0b1b28, transparent 45%);
  }
  h1 {
    font-size: clamp(40px, 8.7vw, 60px);
  }
  .intro {
    font-size: 17px;
  }
  .hero-foot {
    font-size: 12px;
    letter-spacing: 0;
    gap: 18px;
    align-items: end;
  }
  .hero-foot span {
    max-width: 48%;
  }
  .hero-foot span:last-child {
    text-align: right;
  }
  .music {
    padding-top: 52px;
  }
  .section-top {
    display: block;
  }
  .section-top > p {
    margin-top: 20px;
    max-width: none;
  }
  .album-nav {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    gap: 14px;
  }
  .album-nav .album-jump {
    padding: 20px;
    gap: 22px;
  }
  .album-jump > img {
    width: 110px;
  }
  .album-jump strong {
    font-size: 34px;
  }
  .album {
    display: block;
    margin-bottom: 60px;
  }
  .album-heading {
    position: static;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 26px;
    align-items: start;
  }
  .album-art, .melancolie-art {
    width: 130px;
    height: 130px;
    margin: 0;
  }
  .album-heading h2 {
    font-size: 34px;
  }
  .album-heading .eyebrow {
    font-size: 12px;
    letter-spacing: .06em;
    margin-bottom: 8px;
  }
  .album-heading p:last-of-type {
    font-size: 14px;
    margin: 8px 0 14px;
  }
  .album-buy, .album-download, .album-booklet-badge {
    font-size: 14px;
    text-align: left;
    justify-content: flex-start;
    padding: 8px 10px;
  }
  .track {
    column-gap: 16px;
  }
  .track h3 {
    font-size: 22px;
  }
  .shop {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-card {
    padding: 24px;
    gap: 16px;
  }
  .shop-artwork {
    min-height: 0;
    justify-content: center;
  }
  .shop-artwork > .album-art, .shop-artwork > .melancolie-art {
    width: 180px;
    height: 180px;
  }
  .shop-artwork.is-double > .album-art, .shop-artwork.is-double > .melancolie-art {
    width: calc(50% - 6px);
    max-width: 150px;
    height: auto;
  }
  .shop-card h3 {
    font-size: 28px;
  }
  .shop-card .pill {
    width: 100%;
  }
  .album-gift {
    justify-content: flex-start;
  }
  .legal {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .legal summary {
    padding: 18px;
  }
  .legal details > div {
    padding: 0 18px 20px;
  }
  footer p {
    margin: 0;
  }
  .test-confirmation {
    margin: 20px;
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .album-heading {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }
  .album-heading > .album-art, .album-heading > .melancolie-art {
    width: 88px;
    height: 88px;
  }
  .album-heading h2 {
    font-size: 30px;
  }
  .album-nav .album-jump {
    padding: 16px;
    gap: 16px;
  }
  .album-jump > img {
    width: 88px;
  }
  .album-jump strong {
    font-size: 28px;
  }
  .track {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 12px;
  }
  .cover {
    width: 48px;
    height: 48px;
  }
  .cta {
    font-size: 14px;
    padding: 12px 16px;
  }
  .track h3 {
    font-size: 20px;
  }
}

/* Spotify Section */
.spotify-section {
  padding: 80px var(--gutter);
  background: linear-gradient(180deg, var(--bg) 0%, #0d2232 50%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.spotify-section::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 215, 96, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.spotify-container {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.4fr);
  gap: 48px;
  align-items: center;
}

.spotify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 215, 96, 0.12);
  border: 1px solid rgba(30, 215, 96, 0.35);
  border-radius: 20px;
  color: #1ed760;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.spotify-badge .spotify-icon {
  fill: #1ed760;
}

.spotify-header h2 {
  font: clamp(28px, 4vw, 44px)/1.2 Georgia, serif;
  margin: 0 0 16px;
  color: var(--text);
}

.spotify-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #112735 0%, #17384e 100%);
  border: 1px solid rgba(237, 190, 136, 0.4);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.spotify-btn:hover {
  background: linear-gradient(135deg, #16364a 0%, #1e4b68 100%);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(237, 190, 136, 0.25);
}

.spotify-btn-icon {
  fill: #1ed760;
  transition: transform 0.25s ease;
}

.spotify-btn:hover .spotify-btn-icon {
  transform: scale(1.15);
}

.spotify-card {
  position: relative;
  background: rgba(17, 39, 53, 0.7);
  border: 1px solid rgba(237, 190, 136, 0.25);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(237, 190, 136, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.spotify-card:hover {
  border-color: rgba(237, 190, 136, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 36px rgba(237, 190, 136, 0.16);
  transform: translateY(-3px);
}

.spotify-iframe {
  display: block;
  width: 100%;
}

/* Life & Micro-animations */
.hero .landscape {
  animation: heroBreathing 14s ease-in-out infinite alternate;
}

@keyframes heroBreathing {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

.shop-card {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 190, 136, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(237, 190, 136, 0.16);
}

.album-art, .album-jump > img, .melancolie-art {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-jump:hover > img, .album-heading:hover .album-art, .album-heading:hover .melancolie-art {
  transform: scale(1.03) rotate(0.5deg);
  box-shadow: 0 8px 24px rgba(237, 190, 136, 0.25);
}

.cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 190, 136, 0.35);
}

@media (max-width: 820px) {
  .spotify-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Floating Dock Player - Haute-Fidélité */
.dock-player {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: calc(100% - 40px);
  max-width: 1080px;
  background: rgba(11, 27, 40, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(237, 190, 136, 0.4);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 35px rgba(237, 190, 136, 0.15);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.dock-player.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 22px;
}

/* Left: Track info & Vinyl */
.dock-track-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  max-width: 280px;
}

.dock-vinyl-art {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(237, 190, 136, 0.3);
  flex-shrink: 0;
  animation: dockVinylSpin 8s linear infinite;
  animation-play-state: paused;
}

.dock-player.is-playing .dock-vinyl-art {
  animation-play-state: running;
}

@keyframes dockVinylSpin {
  100% { transform: rotate(360deg); }
}

.dock-vinyl-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dock-vinyl-groove {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.dock-vinyl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
}

.dock-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.dock-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dock-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-subtitle {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dock Equalizer */
.dock-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  flex-shrink: 0;
}

.dock-equalizer span {
  width: 2.5px;
  height: 3px;
  background: var(--gold);
  border-radius: 1px;
  transition: height 0.15s ease;
}

.dock-player.is-playing .dock-equalizer span:nth-child(1) {
  animation: eqBar 0.7s ease-in-out infinite alternate;
}
.dock-player.is-playing .dock-equalizer span:nth-child(2) {
  animation: eqBar 1.1s ease-in-out 0.15s infinite alternate;
}
.dock-player.is-playing .dock-equalizer span:nth-child(3) {
  animation: eqBar 0.85s ease-in-out 0.3s infinite alternate;
}
.dock-player.is-playing .dock-equalizer span:nth-child(4) {
  animation: eqBar 1.3s ease-in-out 0.1s infinite alternate;
}

/* Center: Transport & Seeker */
.dock-controls-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 480px;
}

.dock-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dock-btn-icon {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease, transform 0.15s ease;
}

.dock-btn-icon:hover {
  color: var(--gold);
  transform: scale(1.12);
}

.dock-play-main {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: #102330;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(237, 190, 136, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dock-play-main:hover {
  transform: scale(1.08);
  background: #ffd4a2;
  box-shadow: 0 6px 18px rgba(237, 190, 136, 0.55);
}

.dock-play-main .dock-icon-pause {
  display: none;
}

.dock-player.is-playing .dock-play-main .dock-icon-play {
  display: none;
}

.dock-player.is-playing .dock-play-main .dock-icon-pause {
  display: block;
}

.dock-timeline {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.dock-time {
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  text-align: center;
}

.dock-seek-wrap {
  position: relative;
  flex: 1;
  height: 18px;
  display: flex;
  align-items: center;
}

.dock-seek-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.dock-seek-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #fff);
  border-radius: 3px;
  transition: width 0.08s linear;
}

.dock-seek-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

/* Right: Volume, Buy, Close */
.dock-actions-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dock-volume {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dock-vol-slider {
  width: 70px;
  height: 4px;
  accent-color: var(--gold);
  cursor: pointer;
}

.dock-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--gold);
  color: #102330;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(237, 190, 136, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dock-buy-btn .pill {
  background: #102330 !important;
  color: var(--gold) !important;
  border: 0 !important;
  padding: 2px 6px !important;
  font-size: 10px !important;
  letter-spacing: 0.05em !important;
  min-height: auto !important;
  border-radius: 3px !important;
}

.dock-buy-btn:hover {
  background: #ffd4a2;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(237, 190, 136, 0.45);
}

.dock-btn-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.dock-btn-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Shop Single Card */
.shop-card-single {
  border-color: rgba(237, 190, 136, 0.35);
  background: linear-gradient(155deg, rgba(17, 39, 53, 0.8), #0b1b28 80%);
}

.shop-single-link {
  font-size: 14px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 4px;
}

/* Responsive Dock */
@media (max-width: 900px) {
  .dock-volume {
    display: none;
  }
}

@media (max-width: 720px) {
  .dock-player {
    bottom: 12px;
    width: calc(100% - 20px);
    border-radius: 14px;
  }
  .dock-inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .dock-track-info {
    min-width: 0;
    max-width: 140px;
  }
  .dock-subtitle {
    display: none;
  }
  .dock-vinyl-art {
    width: 40px;
    height: 40px;
  }
  .dock-buy-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  .dock-lyrics-btn {
    padding: 6px 8px;
    font-size: 11px;
  }
  .dock-lyrics-label {
    display: none;
  }
}

/* Track Lyrics Button */
.track-lyrics-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 11px;
  border-radius: 6px;
  background: rgba(239, 192, 140, 0.08);
  border: 1px solid rgba(239, 192, 140, 0.28);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.track-lyrics-btn:hover {
  background: rgba(239, 192, 140, 0.2);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.track-lyrics-btn svg {
  flex-shrink: 0;
}

/* Dock Lyrics Button */
.dock-lyrics-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: 20px;
  background: rgba(239, 192, 140, 0.12);
  border: 1px solid rgba(239, 192, 140, 0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dock-lyrics-btn:hover {
  background: rgba(239, 192, 140, 0.25);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 2px 10px rgba(239, 192, 140, 0.25);
}

.dock-lyrics-btn svg {
  flex-shrink: 0;
}

/* Lyrics Modal */
body.lyrics-modal-active {
  overflow: hidden;
}

.lyrics-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lyrics-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lyrics-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lyrics-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #112735 0%, #0a1824 100%);
  border: 1px solid rgba(239, 192, 140, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(239, 192, 140, 0.12);
  z-index: 1;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lyrics-modal.is-open .lyrics-modal-dialog {
  transform: translateY(0) scale(1);
}

.lyrics-modal-header {
  position: relative;
  padding: 22px 26px 16px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 39, 53, 0.6);
}

.lyrics-modal-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lyrics-badge-album {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(239, 192, 140, 0.15);
  color: var(--gold);
  border: 1px solid rgba(239, 192, 140, 0.25);
}

.lyrics-badge-no {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.lyrics-modal-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  padding-right: 32px;
  letter-spacing: 0.02em;
}

.lyrics-modal-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.lyrics-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ddd;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lyrics-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: scale(1.05);
}

.lyrics-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #e2e8f0;
}

.lyrics-modal-body::-webkit-scrollbar {
  width: 7px;
}
.lyrics-modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.lyrics-modal-body::-webkit-scrollbar-thumb {
  background: rgba(239, 192, 140, 0.3);
  border-radius: 4px;
}
.lyrics-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.lyrics-block {
  margin-bottom: 22px;
}

.lyrics-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.85;
}

.lyrics-inline-tag {
  display: inline-block;
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
  margin: 3px 0;
}

.lyrics-verse {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: #e2e8f0;
}

.lyrics-chorus {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  background: rgba(239, 192, 140, 0.05);
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0 8px 8px 0;
}

.lyrics-chorus .lyrics-verse {
  color: #fff;
  font-weight: 500;
}

.lyrics-instrumental {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px dashed rgba(239, 192, 140, 0.2);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

.lyrics-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
}

.lyrics-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(239, 192, 140, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.lyrics-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-style: italic;
}

.lyrics-modal-footer {
  padding: 16px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 39, 53, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.lyrics-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lyrics-buy-single-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #102330;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(237, 190, 136, 0.3);
  transition: all 0.2s ease;
}

.lyrics-buy-single-btn:hover {
  background: #ffd4a2;
  border-color: #ffd4a2;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(237, 190, 136, 0.45);
}

.lyrics-booklet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(239, 192, 140, 0.12);
  border: 1px solid rgba(239, 192, 140, 0.35);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lyrics-booklet-btn:hover {
  background: rgba(239, 192, 140, 0.25);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.lyrics-close-btn {
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lyrics-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

@media (max-width: 600px) {
  .lyrics-modal-dialog {
    max-height: 94vh;
  }
  .lyrics-modal-header {
    padding: 16px 18px 12px 18px;
  }
  .lyrics-modal-title {
    font-size: 18px;
  }
  .lyrics-modal-body {
    padding: 18px 20px;
    font-size: 14px;
  }
  .lyrics-modal-footer {
    padding: 12px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .lyrics-modal-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .lyrics-buy-single-btn,
  .lyrics-booklet-btn {
    justify-content: center;
    width: 100%;
  }
  .lyrics-close-btn {
    text-align: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
