  @font-face {
    font-family: 'Berlin Sans FB';
    src: url('assets/BRLNSR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

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

  :root {
    --red: #de1047;
    --red-bright: #ff1a50;
    --black: #080808;
    --dark: #0F0F0F;
    --gray: #1A1A1A;
    --gray-mid: #2A2A2A;
    --text: #C8C8C0;
    --text-dim: #606060;
    --font-title: 'Bebas Neue', sans-serif;
    --font-type: 'Special Elite', cursive;
    --font-mono: 'Berlin Sans FB', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-mono);
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* SCANLINES OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.08) 2px,
      rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 9999;
  }

  /* GRAIN */
  body::after {
    content: '';
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
    animation: grain 0.5s steps(1) infinite;
  }

  @keyframes grain {
    0%, 100% { transform: translate(0,0); }
    10% { transform: translate(-2%,-3%); }
    20% { transform: translate(3%,1%); }
    30% { transform: translate(-1%,4%); }
    40% { transform: translate(2%,-2%); }
    50% { transform: translate(-3%,2%); }
    60% { transform: translate(1%,-4%); }
    70% { transform: translate(3%,3%); }
    80% { transform: translate(-2%,1%); }
    90% { transform: translate(2%,-1%); }
  }

  /* ===== HERO ===== */
  #hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: clip;    /* coupe uniquement les débordements horizontaux */
    overflow-y: visible; /* le contenu peut respirer verticalement */
    padding: 60px 20px;  /* padding augmenté pour absorber les écarts de rendu inter-navigateurs */
  }

  /* Album cover zoomed as atmospheric bg */
  .hero-album-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/Background RNT 1 Venom.jpg');
    background-size: 220%;
    background-position: center 65%;
    opacity: 1;
    filter: saturate(0.55) contrast(1.05);
  }

  /* Dark veil over album bg */
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(194,4,53,0.18) 0%, transparent 55%),
      linear-gradient(rgba(8,8,8,0.82), rgba(8,8,8,0.82));
  }

  /* Vertical bars prison effect */
  .prison-bars {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 62px
    );
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 48%;
    width: 100%;
    flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .hero-content { max-width: 100%; text-align: center; }
    .hero-content .featuring-strip { justify-content: center; }
    .hero-cta-wrap { justify-content: center; }
  }

  .case-number {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-title {
    font-family: var(--font-title);
    font-size: clamp(40px, 12vw, min(140px, 14dvh));
    line-height: 0.9;
    letter-spacing: 2px;
    color: #fff;
    text-shadow:
      0 0 40px rgba(194,4,53,0.4),
      0 0 80px rgba(194,4,53,0.15);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
    position: relative;
  }

  .hero-title .subtitle-album {
    display: block;
    font-size: clamp(18px, 4vw, 42px);
    color: var(--red);
    letter-spacing: 12px;
    margin-top: 8px;
  }

  .hero-sub {
    font-family: var(--font-type);
    font-size: clamp(16px, 2.2vw, 24px);
    color: #fff;
    margin: 20px 0 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-feat {
    font-family: var(--font-type);
    font-size: clamp(13px, 1.6vw, 18px);
    color: rgba(255,255,255,0.55);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 2;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.75s forwards;
  }
  .hero-feat em {
    color: #fff;
    font-style: normal;
    font-weight: normal;
  }

  /* Featuring strip */
  .featuring-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .featuring-strip span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .feat-tag {
    background: var(--gray);
    border: 1px solid var(--gray-mid);
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text);
    font-family: var(--font-mono);
    text-transform: uppercase;
    border-left: 2px solid var(--red);
  }

  .hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
  }

  .hero-cta-play {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 17px;
    border-color: transparent transparent transparent #fff;
    flex-shrink: 0;
    position: relative;
    top: 1px;
    margin-right: 10px;
  }

  .hero-cta-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 14px;
    position: relative;
    top: -1px;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    background: #382151;
    color: #fff;
    font-family: var(--font-title);
    font-size: 22px;
    letter-spacing: 4px;
    padding: 18px 52px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s;
  }

  .hero-cta:hover::before { transform: translateX(100%); }
  .hero-cta:hover {
    background: #4d2d6e;
    box-shadow: 0 0 30px rgba(56,33,81,0.6), 0 0 60px rgba(56,33,81,0.25);
    letter-spacing: 6px;
  }

  /* Album cover floating */
  .hero-album {
    position: relative;
    width: clamp(240px, 38vw, 480px);
    opacity: 0.08;
    filter: contrast(3) brightness(0.25) blur(7px) saturate(0);
    pointer-events: none;
    display: block;
    border: 1px solid rgba(194,4,53,0.35);
    box-shadow:
      0 0 40px rgba(194,4,53,0.28),
      0 0 80px rgba(194,4,53,0.10),
      0 40px 100px rgba(0,0,0,0.85);
    animation: albumGlow 4s ease-in-out infinite, vhsBoot 2.8s ease forwards;
    transition: box-shadow 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
  }

  /* ── VHS Glitch ── */
  .album-glitch-wrap {
    position: relative;
    display: block;
    overflow: hidden;
  }

  /* Bandes de scan displacement (pseudo-éléments = image dupliquée décalée) */
  .album-glitch-wrap::before,
  .album-glitch-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/Couverture RNT 1 Venom.jpg') center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
  }

  .album-glitch-wrap.is-glitching::before {
    opacity: 1;
    clip-path: inset(12% 0 58% 0);
    transform: translateX(14px);
  }

  .album-glitch-wrap.is-glitching::after {
    opacity: 1;
    clip-path: inset(52% 0 14% 0);
    transform: translateX(-12px);
  }

  /* Noise lines */
  .vhs-noise-line {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    background: rgba(255,255,255,0.9);
  }

  .album-glitch-wrap.is-glitching .vhs-noise-line.nl1 {
    opacity: 1;
    height: 4px;
  }

  .album-glitch-wrap.is-glitching .vhs-noise-line.nl2 {
    opacity: 0.7;
    height: 2px;
  }

  .hero-album-wrap {
    position: relative;
    flex-shrink: 0;
    z-index: 10;
    padding-bottom: 36px;
  }

  .album-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
  }
  .album-corner-tl { top: -8px; left: -8px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
  .album-corner-tr { top: -8px; right: -8px; border-top: 2px solid var(--red); border-right: 2px solid var(--red); }
  .album-corner-bl { bottom: 28px; left: -8px; border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); }
  .album-corner-br { bottom: 28px; right: -8px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }

  .hero-row {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 6%;
  }

  @keyframes albumFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  @keyframes albumGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(194,4,53,0.25), 0 0 80px rgba(194,4,53,0.08), 0 40px 100px rgba(0,0,0,0.85); }
    50% { box-shadow: 0 0 65px rgba(194,4,53,0.48), 0 0 130px rgba(194,4,53,0.20), 0 40px 100px rgba(0,0,0,0.85); }
  }
  @keyframes vhsBoot {
    0%   { opacity: 0.08; filter: contrast(3) brightness(0.25) blur(7px) saturate(0); }
    8%   { opacity: 0.55; filter: contrast(1.9) brightness(1.4) blur(2px) saturate(0.3); }
    16%  { opacity: 0.15; filter: contrast(2.8) brightness(0.2) blur(6px) saturate(0); }
    28%  { opacity: 0.7;  filter: contrast(1.6) brightness(1.1) blur(1px) saturate(0.5); }
    38%  { opacity: 0.3;  filter: contrast(2.2) brightness(0.4) blur(4px) saturate(0.1); }
    52%  { opacity: 0.82; filter: contrast(1.3) brightness(0.98) blur(0.5px) saturate(0.8); }
    66%  { opacity: 0.9;  filter: contrast(1.15) brightness(0.93) blur(0.2px); }
    82%  { opacity: 0.97; filter: contrast(1.07) brightness(0.91); }
    100% { opacity: 1;    filter: contrast(1.05) brightness(0.92); }
  }

  .album-glitch-wrap.is-glitching {
    filter: hue-rotate(10deg) brightness(1.08);
  }

  @media (max-width: 900px) {
    .hero-row { flex-direction: column; padding: 0 20px; gap: 40px; }
    .hero-album { width: clamp(200px, 60vw, 320px); }
  }

  /* Tablette : réduit l'intensité du glow pour compenser la taille intermédiaire du titre */
  @media (min-width: 580px) and (max-width: 900px) {
    .hero-title {
      text-shadow:
        0 0 40px rgba(194,4,53,0.10),
        0 0 80px rgba(194,4,53,0.04);
    }
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

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

  /* ===== DIVIDER ===== */
  .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    margin: 10px 0;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: var(--gray-mid);
  }

  .divider-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--text-dim);
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ===== COFFRETS ===== */
  #coffrets {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 6vw, 64px);
    color: #fff;
    letter-spacing: 3px;
    line-height: 1;
  }

  .section-sub {
    font-family: var(--font-type);
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 12px;
    letter-spacing: 1px;
  }

  .coffrets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2px;
    row-gap: 48px;
    align-items: stretch;
  }

  @media (max-width: 768px) {
    .coffrets-grid { grid-template-columns: 1fr; gap: 16px; }
    .coffret-name { font-size: clamp(26px, 6.5vw, 40px); }
  }

  .coffret-card {
    background: var(--dark);
    border: 1px solid var(--gray-mid);
    padding: 36px 28px;
    position: relative;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    min-width: 0; /* empêche le contenu de forcer la colonne à s'élargir */
  }

  /* Bouton toujours en bas de la carte quelle que soit la hauteur du contenu */
  .coffret-card .btn-coffret {
    margin-top: auto;
  }

  .coffret-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }

  .coffret-card.featured {
    background: var(--gray);
    border-color: var(--red);
    padding: 36px 28px;
    z-index: 2;
  }

  .featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: #fff;
    padding: 4px 16px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .coffret-name {
    font-family: var(--font-title);
    font-size: clamp(22px, 2.2vw, 30px);
    white-space: nowrap;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-align: center;
  }

  /* Trigger carrousel sur les images coffret */
  .coffret-img-trigger {
    position: relative;
    cursor: pointer;
    display: block;
    margin-bottom: 24px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
  }
  .coffret-img-trigger::after {
    content: '+ VIEW';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 4px;
    color: transparent;
    transition: background 0.25s, color 0.25s;
    pointer-events: none;
  }
  .coffret-img-trigger:hover::after {
    background: rgba(0,0,0,0.52);
    color: #fff;
  }

  .coffret-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: saturate(0.75) contrast(1.05);
    margin-bottom: 0;
    display: block;
    border: 1px solid var(--gray-mid);
    transition: filter 0.3s, box-shadow 0.3s;
  }

  .coffret-card:hover .coffret-img {
    filter: saturate(1) contrast(1.05);
  }
  .coffret-card.featured .coffret-img {
    filter: saturate(0.85) contrast(1.05);
    box-shadow: 0 0 20px rgba(194,4,53,0.18);
  }
  .coffret-card.featured:hover .coffret-img {
    filter: saturate(1) contrast(1.05);
    box-shadow: 0 0 32px rgba(194,4,53,0.38);
  }

  .coffret-items {
    list-style: none;
    margin-bottom: 28px;
  }

  .coffret-items li {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    padding: 7px 0;
    border-bottom: 1px solid var(--gray-mid);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .coffret-items li::before {
    content: '—';
    color: var(--red);
    flex-shrink: 0;
  }

  .coffret-items li.included {
    color: var(--text);
  }

  .coffret-price {
    font-family: var(--font-title);
    font-size: 44px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }

  .coffret-price-note {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .coffret-limited {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .coffret-limited::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
    flex-shrink: 0;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
  }

  .btn-coffret {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--font-title);
    font-size: 16px;
    letter-spacing: 3px;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }

  .coffret-card.featured .btn-coffret {
    background: var(--red);
    color: #fff;
  }

  /* Carte featured ligne 2 : bouton et image identiques aux cartes standards */
  .coffret-card.featured.btn-standard .btn-coffret {
    background: transparent;
    color: var(--red);
  }
  .coffret-card.featured.btn-standard .btn-coffret:hover {
    background: var(--red);
    color: #fff;
  }
  .coffret-card.featured.btn-standard .coffret-img {
    filter: saturate(0.75) contrast(1.05);
    box-shadow: none;
  }
  .coffret-card.featured.btn-standard:hover .coffret-img {
    filter: saturate(1) contrast(1.05);
    box-shadow: none;
  }

  .btn-coffret:hover {
    background: var(--red);
    color: #fff;
    box-shadow:
      0 0 12px rgba(222,16,71,0.7),
      0 0 30px rgba(222,16,71,0.4),
      0 0 60px rgba(222,16,71,0.15);
    letter-spacing: 5px;
  }

  .tracklist-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 8px;
    text-align: center;
  }

  /* ===== SÉPARATEUR ===== */
  .section-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
  }

  /* Logo glitch wrap */
  .logo-glitch-wrap {
    position: relative;
    width: 90%;
    max-width: 576px;
    overflow: hidden;
  }

  .logo-glitch-wrap::before,
  .logo-glitch-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/logorntseprateur-23.png') center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
  }

  .logo-glitch-wrap.is-glitching::before {
    opacity: 1;
    clip-path: inset(12% 0 58% 0);
    transform: translateX(14px);
  }

  .logo-glitch-wrap.is-glitching::after {
    opacity: 1;
    clip-path: inset(52% 0 14% 0);
    transform: translateX(-12px);
  }

  .logo-glitch-wrap.is-glitching {
    filter: hue-rotate(10deg) brightness(1.08);
  }

  .separator-img {
    display: block;
    width: 100%;
    opacity: 0;
  }

  .separator-img.vhs-booting {
    opacity: 0.08;
    filter: contrast(3) brightness(0.25) blur(7px) saturate(0);
    animation: vhsBootLogo 2.8s ease forwards;
  }

  @keyframes vhsBootLogo {
    0%   { opacity: 0.08; filter: contrast(3) brightness(0.25) blur(7px) saturate(0); }
    8%   { opacity: 0.55; filter: contrast(1.9) brightness(1.4) blur(2px) saturate(0.3); }
    16%  { opacity: 0.15; filter: contrast(2.8) brightness(0.2) blur(6px) saturate(0); }
    28%  { opacity: 0.7;  filter: contrast(1.6) brightness(1.1) blur(1px) saturate(0.5); }
    38%  { opacity: 0.3;  filter: contrast(2.2) brightness(0.4) blur(4px) saturate(0.1); }
    52%  { opacity: 0.82; filter: contrast(1.3) brightness(0.98) blur(0.5px) saturate(0.8); }
    66%  { opacity: 0.9;  filter: contrast(1.15) brightness(0.93) blur(0.2px); }
    82%  { opacity: 0.97; filter: drop-shadow(0 0 10px rgba(194,4,53,0.3)); }
    100% { opacity: 1;    filter: drop-shadow(0 0 18px rgba(194,4,53,0.45)) drop-shadow(0 0 40px rgba(194,4,53,0.2)); }
  }

  @media (max-width: 600px) {
    .logo-glitch-wrap {
      width: 88%;
      max-width: 340px;
    }
  }

  /* ===== TRACKLIST — mobile-first ===== */
  #tracklist {
    padding: 50px 14px;   /* mobile */
    max-width: 800px;
    margin: 0 auto;
  }

  .tracklist-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--red);
  }

  .tracklist-header span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .track-row {
    display: grid;
    grid-template-columns: 32px 1fr auto;  /* mobile : num plus compact */
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-mid);
    transition: all 0.15s;
    gap: 10px;
    cursor: default;
  }

  .track-row:hover {
    padding-left: 6px;
    border-bottom-color: var(--red);
  }

  .track-row:hover .track-num { color: var(--red); }

  .track-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    transition: color 0.15s;
  }

  .track-info {}

  .track-title {
    font-family: var(--font-type);
    font-size: 13px;   /* mobile */
    color: var(--text);
    margin-bottom: 2px;
  }

  .track-feat {
    font-family: var(--font-mono);
    font-size: 14px;   /* mobile */
    color: var(--text-dim);
    letter-spacing: 1px;
  }

  .track-feat em {
    color: var(--red);
    font-style: normal;
  }

  .track-duration {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
  }

  /* Tracklist — restaure les tailles desktop à partir de 600px */
  @media (min-width: 600px) {
    #tracklist { padding: 80px 20px; }
    .track-row {
      grid-template-columns: 40px 1fr auto;
      gap: 16px;
      padding: 14px 0;
    }
    .track-row:hover { padding-left: 8px; }
    .track-title { font-size: 15px; }
    .track-feat  { font-size: 17px; }
  }

  .track-row.has-embed { cursor: pointer; }
  .track-row.has-embed:hover .track-num { color: var(--red); }
  .track-row.has-embed .track-duration::after {
    content: ' ▶';
    color: var(--red);
    font-size: 9px;
  }
  .track-row.has-embed.playing .track-duration::after { content: ' ▼'; }

  .track-spotify-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
  }
  .track-spotify-wrap.open {
    max-height: 400px;
    opacity: 1;
  }
  .track-spotify-wrap iframe {
    display: block;
    width: 100%;
    margin: 8px 0 4px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black);
    border-top: 1px solid #1c1c1c;
    padding: 60px 20px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer-socials {
    display: grid;
    grid-template-columns: repeat(6, 44px);
    gap: 32px;
    align-items: end;
    justify-content: center;
  }

  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
    touch-action: manipulation;
  }
  .footer-social-icon:hover { opacity: 0.6; }
  /* Scale uniquement sur desktop (hover: hover = vrai curseur souris)
     → aucun risque de ghost click sur iOS/Android */
  @media (hover: hover) {
    .footer-social-icon:hover { transform: scale(1.12); }
  }
  .footer-social-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: url(#icon-red);
    transition: filter 0.2s;
  }
  .footer-social-icon:hover img {
    /* Filtre d'origine : hue-rotate(284deg) décale vers le violet/lavande */
    filter: brightness(0) saturate(100%) invert(70%) sepia(90%) saturate(140%) hue-rotate(284deg) brightness(0.86);
  }

  /* Écrans P3/OLED wide-gamut (iPhone, MacBook Pro récent, etc.) :
     valeur compensée pour un rendu perceptuellement identique à #de1047 sur sRGB */
  @media (color-gamut: p3) {
    .footer-social-icon img       { filter: url(#icon-red-p3); }
    .footer-social-icon:hover img { filter: brightness(0) saturate(100%) invert(70%) sepia(90%) saturate(140%) hue-rotate(284deg) brightness(0.86); }
  }

  .footer-newsletter-label {
    font-family: var(--font-title);
    font-size: clamp(13px, 2vw, 20px);
    letter-spacing: 5px;
    color: rgba(255,255,255,0.55);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
  }

  .footer-signup-btn {
    display: inline-block;
    background: #1e1e1e;
    color: #fff;
    font-family: var(--font-title);
    font-size: 20px;
    letter-spacing: 6px;
    padding: 15px 52px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #333;
    transition: background 0.2s, letter-spacing 0.2s;
  }
  .footer-signup-btn:hover { background: #2a2a2a; letter-spacing: 8px; }

  .footer-logos-img {
    max-width: 500px;
    width: 88%;
    object-fit: contain;
  }

  .footer-legal {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
  }

  /* Glitch animation on hover hero title */
  @keyframes glitch {
    0% { text-shadow: 2px 0 var(--red), -2px 0 #00f; }
    20% { text-shadow: -2px 0 var(--red), 2px 0 #00f; }
    40% { text-shadow: 2px 2px var(--red), -2px -2px #00f; }
    60% { text-shadow: -2px 2px var(--red), 2px -2px #00f; }
    80% { text-shadow: 0 0 var(--red), 0 0 #00f; }
    100% { text-shadow: 2px 0 var(--red), -2px 0 #00f; }
  }

  .hero-title:hover {
    opacity: 1;
    animation: glitch 0.3s steps(1) infinite;
  }
  /* Une fois fadeUp terminé, verrouille opacity et coupe l'animation de base */
  .hero-title.anim-done {
    opacity: 1;
    animation: none;
  }
  .hero-title.anim-done:hover {
    opacity: 1;
    animation: glitch 0.3s steps(1) infinite;
  }

  /* ===== COOKIE BANNER ===== */
  #cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #0a0a0a;
    border-top: 1px solid var(--red);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(0);
    transition: transform 0.4s ease;
  }
  #cookie-banner.hidden { transform: translateY(110%); }

  .cookie-banner-text { flex: 1; min-width: 260px; }
  .cookie-banner-title {
    font-family: var(--font-title);
    font-size: 18px;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .cookie-banner-desc {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    line-height: 1.7;
  }
  .cookie-banner-desc a {
    color: var(--red);
    text-decoration: none;
    cursor: pointer;
  }
  .cookie-banner-desc a:hover { text-decoration: underline; }

  .cookie-banner-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }
  .cookie-btn {
    font-family: var(--font-title);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }
  .cookie-btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: rgba(255,255,255,0.6);
  }
  .cookie-btn-outline:hover {
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 0 12px rgba(222,16,71,0.7), 0 0 30px rgba(222,16,71,0.4), 0 0 60px rgba(222,16,71,0.15);
    letter-spacing: 5px;
  }
  .cookie-btn-solid {
    background: var(--red);
    color: #fff;
  }
  .cookie-btn-solid:hover {
    background: var(--red);
    box-shadow: 0 0 12px rgba(222,16,71,0.7), 0 0 30px rgba(222,16,71,0.4), 0 0 60px rgba(222,16,71,0.15);
    letter-spacing: 5px;
  }

  /* ===== COOKIE MODAL ===== */
  #cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  #cookie-modal.open { opacity: 1; pointer-events: auto; }

  .cookie-modal-box {
    background: #0d0d0d;
    border: 1px solid #222;
    border-top: 2px solid var(--red);
    width: 100%;
    max-width: 520px;
    margin: 20px;
    padding: 36px;
    position: relative;
  }
  .cookie-modal-title {
    font-family: var(--font-title);
    font-size: 26px;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .cookie-modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .cookie-modal-close:hover { color: var(--red); }

  .cookie-row {
    border-bottom: 1px solid #1a1a1a;
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
  .cookie-row:last-of-type { border-bottom: none; }
  .cookie-row-info {}
  .cookie-row-name {
    font-family: var(--font-title);
    font-size: 15px;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .cookie-row-desc {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 320px;
  }

  /* Toggle switch */
  .cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cookie-toggle input { opacity: 0; width: 0; height: 0; }
  .cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: #222;
    border: 1px solid #333;
    cursor: pointer;
    transition: background 0.2s;
  }
  .cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    left: 3px; top: 3px;
    background: #555;
    transition: transform 0.2s, background 0.2s;
  }
  .cookie-toggle input:checked + .cookie-toggle-slider { background: rgba(194,4,53,0.15); border-color: var(--red); }
  .cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); background: var(--red); }
  .cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

  .cookie-modal-save {
    margin-top: 28px;
    width: 100%;
    font-family: var(--font-title);
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 14px;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, letter-spacing 0.2s;
  }
  .cookie-modal-save:hover {
    background: var(--red);
    letter-spacing: 6px;
    box-shadow: 0 0 12px rgba(222,16,71,0.7), 0 0 30px rgba(222,16,71,0.4), 0 0 60px rgba(222,16,71,0.15);
  }

  /* ===== MEDIA CONSENT PROMPT (inline) ===== */
  /* ── "What does this mean?" dans la modale cookie ── */
  .cookie-row-more-btn {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    cursor: pointer;
    border-bottom: 1px dotted #333;
    transition: color 0.2s, border-color 0.2s;
  }
  .cookie-row-more-btn:hover { color: var(--red); border-color: var(--red); }

  .cookie-row-more-text {
    display: none;
    margin-top: 10px;
    padding: 10px 12px;
    background: #0a0a0a;
    border-left: 1px solid #222;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1.8;
    color: var(--text-dim);
  }
  .cookie-row-more-text.visible { display: block; }

  /* ── Lien "Cookie settings" dans le prompt track ── */
  .media-consent-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
  }
  .media-consent-settings {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    cursor: pointer;
    border-bottom: 1px dotted #333;
    transition: color 0.2s, border-color 0.2s;
  }
  .media-consent-settings:hover { color: var(--red); border-color: var(--red); }

  .media-consent-prompt {
    background: #0d0d0d;
    border: 1px solid #222;
    border-left: 2px solid var(--red);
    padding: 20px 24px;
    margin: 8px 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .media-consent-text {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    line-height: 1.7;
  }
  .media-consent-text strong { color: #fff; display: block; margin-bottom: 4px; font-family: var(--font-title); font-size: 14px; letter-spacing: 3px; }
  .media-consent-accept {
    font-family: var(--font-title);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 22px;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .media-consent-accept:hover {
    background: var(--red);
    box-shadow: 0 0 12px rgba(222,16,71,0.7), 0 0 30px rgba(222,16,71,0.4), 0 0 60px rgba(222,16,71,0.15);
    letter-spacing: 5px;
  }

  /* Prompt centré dans le teaser (YouTube) */
  .teaser-consent-prompt {
    display: none;
    background: rgba(10,10,10,0.92);
    border: 1px solid #222;
    border-left: 2px solid var(--red);
    padding: 28px 36px;
    max-width: 520px;
    width: 88%;
    text-align: left;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 20;
    animation: fadeUp 0.35s ease forwards;
  }
  .teaser-consent-prompt.visible {
    display: flex;
  }
  .teaser-consent-prompt .media-consent-text strong {
    font-size: 17px;
    letter-spacing: 4px;
  }
  .teaser-consent-prompt .media-consent-text {
    font-size: 11px;
  }
  .teaser-consent-prompt .media-consent-actions {
    align-self: flex-start;   /* bloc actions aligné à gauche comme le texte */
    align-items: flex-start;
  }
  .teaser-consent-prompt .media-consent-accept {
    font-size: 15px;
    letter-spacing: 4px;
    padding: 12px 32px;
  }
  .media-consent-accept:hover {
    background: var(--red);
    box-shadow: 0 0 12px rgba(222,16,71,0.7), 0 0 30px rgba(222,16,71,0.4), 0 0 60px rgba(222,16,71,0.15);
    letter-spacing: 5px;
  }

  /* ===== NEWSLETTER FORM ===== */
  .footer-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    width: 90%;
  }
  .footer-newsletter-input {
    flex: 1;
    background: #111;
    border: 1px solid #2a2a2a;
    border-right: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 14px 18px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
  }
  .footer-newsletter-input::placeholder { color: #444; }
  .footer-newsletter-input:focus { border-color: var(--red); }
  .footer-newsletter-msg {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    min-height: 18px;
    text-transform: uppercase;
  }

  /* ===== FOOTER RESPONSIVE ===== */

  /* Tous écrans tactiles (mobile + tablette) : anti-zoom iOS sur les inputs */
  @media (hover: none) {
    .footer-newsletter-input {
      font-size: 16px;     /* ≥16px bloque l'auto-zoom iOS Safari sur iPad et iPhone */
      letter-spacing: 1px;
    }
  }

  /* Tablette / petit desktop : réduction progressive, 1 ligne */
  @media (max-width: 600px) {
    .footer-socials {
      grid-template-columns: repeat(6, 34px);
      gap: 20px;
    }
    .footer-social-icon img {
      width: 34px;
      height: 34px;
    }
    .footer-newsletter-form {
      flex-direction: column;
      width: 90%;
      max-width: 340px;
    }
    .footer-newsletter-input {
      border-right: 1px solid #2a2a2a;
      border-bottom: none;
      width: 100%;
      font-size: 16px;      /* ≥16px obligatoire : iOS Safari zoome sur tout input <16px */
      letter-spacing: 1px;  /* réduit proportionnellement au font-size plus grand */
    }
    .footer-newsletter-input:focus {
      border-color: var(--red);
    }
    .footer-signup-btn {
      width: 100%;
      padding: 15px 20px;
      text-align: center;
    }
  }

  /* Prompts media (Spotify / YouTube) : actions alignées à gauche sur mobile */
  @media (max-width: 600px) {
    .media-consent-actions {
      align-items: flex-start;   /* bouton + lien à gauche quand le bloc se replie */
    }
  }

  /* Très petit mobile : grille 3×2, icônes confortables */
  @media (max-width: 400px) {
    .footer-socials {
      grid-template-columns: repeat(3, 30px);
      gap: 16px;
    }
    .footer-social-icon img {
      width: 30px;
      height: 30px;
    }
  }

  /* Red horizontal accent lines */
  .red-rule {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 16px;
  }

  /* Video modal */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

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

  .modal-box {
    max-width: 800px;
    width: 90%;
    background: var(--dark);
    border: 1px solid var(--red);
    padding: 20px;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
  }

  .modal-close:hover { color: var(--red); }

  .modal-yt-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
  }

  .modal-yt-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ===== TEASER SECTION ===== */
  #teaser {
    position: relative;
    /* Hauteur calée sur le ratio 16:9 — suit la largeur écran */
    height: 56.25vw;
    min-height: 340px;    /* plancher mobile étroit */
    max-height: 85vh;     /* fallback anciens navigateurs */
    max-height: 85dvh;    /* dvh : tient compte de la barre URL mobile (iOS/Android) */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .teaser-video.playing { opacity: 1; }

  .teaser-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(56,33,81,0.2) 0%, transparent 65%),
      linear-gradient(rgba(8,8,8,0.3), rgba(8,8,8,0.3));
  }

  .teaser-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .teaser-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--text-dim);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.7s ease 0.2s;
  }

  .teaser-title {
    font-family: var(--font-title);
    font-size: clamp(38px, 6vw, 78px);
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease 0.05s, transform 0.7s ease 0.05s;
  }

  .teaser-title em {
    font-style: normal;
    color: #b8a0d4;
  }

  .teaser-play-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.55);
    background: rgba(56,33,81,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
    position: relative;
  }

  .teaser-play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
  }

  .teaser-play-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(56,33,81,0.5);
    animation: teaserPulse 2.2s ease infinite;
  }

  @keyframes teaserPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  .teaser-play-btn:hover {
    background: #382151;
    border-color: #fff;
    box-shadow: 0 0 40px rgba(56,33,81,0.7), 0 0 80px rgba(56,33,81,0.25);
    transform: scale(1.08);
  }

  .teaser-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--text-dim);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.7s ease 0.5s;
  }

  #teaser.visible .teaser-label,
  #teaser.visible .teaser-sub  { opacity: 1; }
  #teaser.visible .teaser-title { opacity: 1; transform: translateY(0); }
  #teaser.visible .teaser-play-btn { opacity: 1; transform: scale(1); }

  .modal-video-placeholder {
    aspect-ratio: 16/9;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--gray-mid);
  }

  .modal-video-placeholder span {
    font-family: var(--font-type);
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 2px;
  }

  .play-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--red);
    margin-left: 4px;
  }

  /* ===== ÉLÉMENTS THÉMATIQUES SUBTILS ===== */

  /* Barreaux côté gauche du hero */
  .bars-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    display: flex;
    gap: 10px;
    padding: 0 10px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.07;
  }
  .bar {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #888 15%, #888 85%, transparent 100%);
    border-radius: 1px;
  }

  /* Fingerprint watermark */
  .fingerprint-bg {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.025;
  }
  .fingerprint-bg svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #fff;
    stroke-width: 1;
  }

  /* Ligne de signal audio dans la section tracklist */
  .waveform-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 24px auto;
    height: 24px;
    opacity: 0.2;
  }
  .waveform-divider span {
    display: inline-block;
    width: 2px;
    background: var(--red);
    border-radius: 1px;
    animation: wavePulse 1.2s ease-in-out infinite;
  }
  @keyframes wavePulse {
    0%, 100% { height: 4px; }
    50% { height: 20px; }
  }

  /* Corner bracket décoratif sur les coffrets */
  .corner-tl, .corner-br {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0.25;
    pointer-events: none;
  }
  .corner-tl { top: 8px; left: 8px; border-top: 1.5px solid var(--red); border-left: 1.5px solid var(--red); }
  .corner-br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--red); border-right: 1.5px solid var(--red); }

  /* ===== CAROUSEL MODAL (Swiper) ===== */
  #carousel-modal { z-index: 10001; }

  .carousel-box {
    max-width: 720px;
    width: 92%;
    background: var(--dark);
    border: 1px solid var(--red);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;                 /* géré individuellement ci-dessous pour un espacement asymétrique */
    max-height: 92vh;
    max-height: 92dvh;
    overflow: hidden;
  }

  /* ── Thumbnails (gestion manuelle, pas Swiper) ── */
  .carousel-thumbs-outer {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;   /* espace explicite entre thumbs et image principale */
  }
  .carousel-thumbs-outer::-webkit-scrollbar { display: none; }

  .carousel-thumbs-inner {
    display: flex;
    gap: 8px;
    justify-content: center;
    min-width: max-content;
    margin: 0 auto;
    padding: 2px 0;
  }

  .carousel-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.38;
    filter: saturate(0.45);
    transition: opacity 0.2s, border-color 0.2s, filter 0.2s;
  }
  .carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }
  .carousel-thumb.active {
    border-color: var(--red);
    opacity: 1;
    filter: saturate(1);
  }
  .carousel-thumb:hover:not(.active) { opacity: 0.7; filter: saturate(0.75); }

  /* ── Image principale — Swiper ── */
  /*
   * --ch : hauteur absolue définie une seule fois, transmise au wrapper et aux slides.
   * Aucune dépendance à height:100% (cassé par box-sizing:border-box du reset global).
   * !important sur wrapper/slides pour ne pas être écrasé par les inline styles de Swiper.
   */
  .carousel-img-wrap {
    --ch: clamp(260px, 62vh, 620px);
    width: 100%;          /* annule margin-left/right: auto du .swiper Swiper CSS */
    height: var(--ch);
    flex-shrink: 0;
    position: relative;
    background: var(--black);
    border: 1px solid var(--gray-mid);
    overflow: hidden;
    box-sizing: border-box;
  }

  .carousel-img-wrap .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: var(--ch) !important;   /* valeur absolue — pas de % */
    will-change: transform;
    transform: translateZ(0);       /* force layer GPU sur l'élément animé */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .carousel-img-wrap .swiper-slide {
    flex-shrink: 0 !important;
    /* width géré par Swiper via inline style (valeur entière en px) — pas de % pour éviter les écarts sub-pixel */
    height: var(--ch) !important;   /* valeur absolue — pas de % */
    position: relative;
    overflow: hidden;
    transform: translateZ(0);           /* force le layer GPU → anti-aliasing sub-pixel */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .carousel-img-wrap .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── Navigation bas : ← ✕ → ── */
  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-shrink: 0;
    margin-top: 16px;      /* espace entre image et navigation */
  }

  .carousel-arrow {
    background: transparent;
    border: none;
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s, text-shadow 0.2s;
    letter-spacing: 0;
    flex-shrink: 0;
    touch-action: manipulation;   /* pas de double-tap zoom */
  }
  .carousel-arrow:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(56,33,81,0.9), 0 0 30px rgba(56,33,81,0.5);
  }

  /* Croix dans un rond — seule exception border-radius du design */
  .carousel-close-circle {
    width: 52px;
    height: 52px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    background: transparent;
    color: var(--red);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
    touch-action: manipulation;
  }
  .carousel-close-circle:hover {
    background: #382151;
    border-color: #382151;
    color: #fff;
    box-shadow: 0 0 20px rgba(56,33,81,0.6), 0 0 50px rgba(56,33,81,0.25);
  }

  /* Mobile */
  @media (max-width: 600px) {
    .carousel-box { width: 96%; padding: 12px; }
    .carousel-thumbs-outer { margin-bottom: 14px; }
    /* vh au lieu de vw : l'image s'adapte à la hauteur de l'écran, pas sa largeur */
    /* Sur 812px : 52vh = 422px vs 180px avec l'ancienne formule vw */
    .carousel-img-wrap { --ch: clamp(260px, 52vh, 480px); height: var(--ch); }
    .carousel-thumb { width: 50px; height: 50px; }
    .carousel-nav { margin-top: 10px; gap: 24px; }
    .carousel-arrow { width: 40px; height: 40px; font-size: 18px; }
    .carousel-close-circle { width: 44px; height: 44px; font-size: 18px; }
  }
