/* --- BASE & OVERFLOW --- */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* --- EFFETS VISUELS --- */
body::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  z-index: 9999;
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  opacity: 0.3;
}

body {
  background: #000;
  color: #ff1a1a;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 50%; left: 50%;
  width: 100vw; height: 100vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.2) 40%, transparent 75%);
  filter: blur(60px);
  animation: heartbeat 1.2s infinite;
  z-index: -1;
}

@keyframes heartbeat {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
  10% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
  20% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.6; }
  30% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
}

/* --- MENU NAVIGATION (CORRIGÉ) --- */
nav {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 10px 0;
    position: relative;
    z-index: 10000;
}

#menu-toggle {
    display: none !important; /* CACHÉ SUR PC */
    color: #f00;
    font-family: monospace;
    text-align: center;
    cursor: pointer;
    padding: 15px;
    letter-spacing: 3px;
}

#nav-links {
    list-style: none;
    display: flex !important; /* VISIBLE SUR PC */
    justify-content: center;
    gap: 30px;
}

#nav-links li a {
    color: #ffffff !important; /* FORCE LE BLANC / PAS DE VIOLET */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
}

#nav-links li a:visited { color: #ffffff !important; }
#nav-links li a:hover { color: #ff0000 !important; }

/* Soulignement animé */
#nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -5px; left: 0;
    width: 0%; height: 1px;
    background: #ff0000;
    transition: width 0.3s ease;
}
#nav-links li a:hover::after { width: 100%; }

/* --- CONTENEURS D'ORIGINE --- */
header, main {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* --- BOUTON HOME (REDIRECT SOUNDCLOUD) --- */

.btn {
  display: inline-block; /* Pour qu'il respecte les marges */
  padding: 14px 32px;
  border: 1px solid #ff0000;
  color: #ff0000 !important; /* Force le rouge */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  transition: 0.3s;
  text-shadow: 0 0 10px #ff0000;
  margin-top: 20px;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: #ff0000 !important;
  color: #000 !important;
  box-shadow: 0 0 20px #ff0000;
  text-shadow: none;
}

/* On s'assure que le conteneur du bouton ne le bloque pas */
header .btn, main .btn {
    z-index: 10;
    position: relative;
}

/* --- AJUSTEMENT MOBILE --- */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: auto; /* Empêche le bouton de prendre toute la largeur si on veut garder le look bouton */
        max-width: 280px;
    }
}
section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.logo {
  width: 320px;
  max-width: 80%;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 15px #ff0000);
}

h1 { font-size: 3.2rem; letter-spacing: 10px; color: #ff2a2a; text-shadow: 0 0 20px #ff0000; }
h2 { font-size: 2rem; margin-bottom: 30px; letter-spacing: 5px; text-transform: uppercase; text-shadow: 0 0 10px #ff0000; }

/* --- FORMULAIRE D'ORIGINE --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  background: #050505;
  border: 1px solid #ff0000;
  padding: 12px;
  color: white;
  outline: none;
  width: 100%;
  resize: none;
}

.contact-form button {
  padding: 14px 32px;
  background: transparent;
  border: 1px solid #ff0000;
  color: #ff0000;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover { background: #ff0000; color: #000; box-shadow: 0 0 20px #ff0000; }

/* --- NEWS & RELEASES (TES CLASSES) --- */
.news-container, .release-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
    max-width: 800px;
}

.news-card, .release-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 49, 49, 0.2);
    padding: 20px;
    transition: 0.3s ease-in-out;
}

/* --- MOBILE (MEDIA QUERY) --- */
@media (max-width: 768px) {
    #menu-toggle { display: block !important; }
    #nav-links {
        display: none !important;
        flex-direction: column !important;
        background: #000;
        padding: 20px 0;
        gap: 15px;
        align-items: center;
    }
    #nav-links.active { display: flex !important; }

    header, main { padding-top: 50px; }
    h1 { font-size: 1.8rem; }
    
    .release-card { flex-direction: column; text-align: center; }
    .release-cover { width: 100%; max-width: 250px; margin-bottom: 15px; }
    
    /* Correction lecteur audio mobile */
    #main-audio { width: 95%; }
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid #ff0000;
    padding: 20px;
    z-index: 10000;
    text-align: center;
    width: 90%;
    max-width: 500px;
    display: none; /* Caché par défaut */
}

#cookie-banner p { font-size: 12px; margin-bottom: 15px; color: #fff; }
#cookie-banner button {
    background: #ff0000;
    color: #000;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    font-family: monospace;
}