/* ============================================================
   SOLEIL NOIR (2012) — Cosmique. Crâne = planète mourante.
   Or / espace profond / cercle occultiste
   ============================================================ */

:root {
  --album-accent:  #b8860b;   /* Or cosmique */
  --album-bg:      #070707;
  --album-bg-2:    #0c0a06;   /* Léger chaud */
  --album-border:  #1f1a0e;
  --album-muted:   #5a4f30;
}

/* Couvercle hero : la pochette rayonne comme une étoile mourante */
.album-hero-cover img {
  filter: sepia(30%) contrast(1.15) brightness(0.9);
}

/* Titre OR — distinct de Khronos rouge */
.album-title { color: #c9a030; }

/* Accent = or sur sous-éléments uniquement */
.album-meta-line strong,
.album-nav-title { color: var(--album-accent); }

/* Cercle occultiste en fond du hero — SVG inline décoratif */
.album-hero-info::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184,134,11,0.07);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.album-hero-info::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Scanlines dorées très légères sur la section tracklist */
.album-tracklist {
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(184,134,11,0.015) 3px,
    rgba(184,134,11,0.015) 4px
  );
}

/* Numéros de piste en or sourd */
.track-num { color: #5a4020; }
.track-item:hover .track-num { color: var(--album-accent); }
