@font-face {
  font-family: "robotothin";
  src: local("Roboto Thin"), local("Roboto-Thin"),
    url("../font/roboto-thin-webfont.woff2") format("woff2"),
    url("../font/roboto-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "robotoregular";
  src: local("Roboto Regular"), local("Roboto-Regular"),
    url("../font/roboto-regular-webfont.woff2") format("woff2"),
    url("../font/roboto-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

ul, li, ol {
  list-style-type: none;
}

.card li {
  line-height: 1.5;
}

ul {
  margin: 8px 0;
}

body {
  font-family: "robotothin", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  color: #f5f0e8;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #1a1a1a; /* fallback pendant le chargement */
}

/* =====================
   IMAGE DE FOND
   ===================== */

.cover {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =====================
   OVERLAY DÉGRADÉ
   ===================== */

.cover-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20)  0%,
    rgba(0,0,0,0.0)  20%,
    rgba(0,0,0,0.0)  38%,
    rgba(0,0,0,0.75) 65%,
    rgba(0,0,0,0.92) 100%
  );
}

/* =====================
   HEADER
   ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.site-header-inner {
  width: 100%;
  max-width: 960px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 24px 0;
  position: relative;
}

/* =====================
   BURGER BOUTON
   ===================== */

.burger {
  pointer-events: all;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 3px;
  transition: background 0.2s;
}

.burger:hover {
  background: rgba(255,255,255,0.08);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   NAV DÉROULANTE
   ===================== */

.main-nav {
  pointer-events: none;
  position: absolute;
  top: 62px;
  right: 24px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  min-width: 180px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.main-nav.open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.main-nav ul {
  list-style: none;
  padding: 8px 0;
}

a {
  text-decoration: none;
  color: rgba(255,255,255,0.80);
}

.main-nav ul li a {
  display: block;
  font-family: "robotoregular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.main-nav ul li + li {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =====================
   CONTENU
   ===================== */

.container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 24px 24px 36px;
  animation: fadeIn 0.9s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-area {
  text-align: center;
  margin-bottom: 20px;
}

.logo-area h1 {
  font-size: 24px;
}

h1,h2,h3 {
  font-weight: normal;
}

.logo-area img {
  width: 36vw;
  max-width: 220px;
  min-width: 120px;
  height: auto;
  filter: drop-shadow(0 0 1.2rem #db110a);
}

.logo-area .subtitle {
  font-family: "robotoregular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 6px;
  position: relative;
  top: -12px;
}
.card p {
   font-size: 15px;
  color: #f1f1f1;
    letter-spacing: 1px;
}

.merci {
  text-align: center;
  margin: 16px 0 0;
}

.card {
  background: rgba(0,0,0,0.60);
  border: none;
  padding: 24px 24px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  text-align: center;
}

.track-title, h1 {
  font-family: "robotoregular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5f0e8;
  margin-bottom: 22px;
}

.track-meta {
  font-size: 11px;
  color: #ffbe4d;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 14px 0;
}

audio {
  width: 100%;
  accent-color: #db110a;
}

.footer {
  text-align: center;
  margin-top: 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 1px;
}

.footer a {
  color: rgba(255,255,255,0.30);
  transition: color 0.2s;
}

.footer a:hover {
  color: rgba(255,255,255,0.70);
}

.button {
    font-family: "robotoregular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 18px;
	max-width: 180px;
	padding: .7em 1.2em;
    border-radius: 4px;
	text-align: center;
	background-color: #db110a;
	color: #fff;
	text-decoration: none;
	display: block;
	margin: 1em auto;
    text-transform: uppercase;
    margin: 1em auto;
}