/* style.css */
body {
    background-color: #050505; /* Noir profond */
    color: #e0e0e0; /* Blanc cassé pour la lisibilité */
    font-family: 'Courier New', Courier, monospace; /* Style brutalist/code */
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 50px;
    border-left: 2px solid #ff0000; /* Ligne rouge AGON */
    padding-left: 20px;
}

h1 {
    text-transform: uppercase;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

h2 {
    color: #ff0000; /* Accent Rouge */
    text-transform: uppercase;
    margin-top: 40px;
    font-size: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

p, li {
    font-size: 1rem;
    color: #aaa;
}

a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #ff0000;
}

.warning-box {
    border: 1px solid #ff0000;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    color: #fff;
    margin: 20px 0;
    font-weight: bold;
}


/* Cookie Banner - Style AGON */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ff0000; /* Fond Rouge AGON */
    color: #000; /* Texte Noir pour le contraste violent */
    padding: 15px;
    text-align: center;
    border-top: 2px solid #fff;
    display: none; /* Caché par défaut, activé par JS */
    z-index: 1000;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

#cookie-banner button {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 15px;
    margin-left: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

#cookie-banner button:hover {
    background-color: #fff;
    color: #000;
}

/*--bouton-retour--*/

.bouton-retour {
  /* --- FORME CLASSIQUE --- */
  background-color: #050505; /* Fond noir uni (pas de dégradé) */
  color: #ff0000;            /* Texte rouge */
  border: 2px solid #ff0000; /* Bordure rouge solide */
  
  /* --- TAILLE (Gros comme demandé) --- */
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  
  /* --- STYLE STANDARD --- */
  cursor: pointer;
  border-radius: 4px; /* Coins à peine arrondis (ou 0px pour carré total) */
  transition: 0.3s;   /* Juste une petite transition pour la couleur */
  
  /* Alignement */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* --- EFFET AU SURVOL (HOVER) --- */
.bouton-retour:hover {
  background-color: #ff0000; /* Le fond devient rouge */
  color: #050505;            /* Le texte devient noir */
  /* Pas d'animation de mouvement, juste la couleur qui change */
}