/* Style général pour les pages d'entrée (index.html et off.html) */
body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Empêche le défilement */
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Vidéo en arrière-plan */
#static {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

main {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 90%;
    text-align: center;
}

/* Conteneur de confirmation (âge, etc.) - UNIFIÉ */
#confirm-contain {
    background-color: rgba(10, 0, 0, 0.95); /* Très sombre, orienté rouge */
    border: 2px solid #ff0000; /* Bordure rouge vif */
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7); /* Forte lueur rouge */
    padding: 30px;
    border-radius: 0; /* Supprimer les coins arrondis pour un look plus 'terminal' */
    max-width: 450px;
    margin: 0 auto;
    animation: boxFlicker 2s infinite; /* Ajout d'une légère animation */
}

#confirm-contain p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #f1f1f1;
    text-shadow: 1px 1px 0 #000;
    font-weight: bold;
    text-transform: uppercase;
}

#buttons a#yes-button {
    /* Style de bouton uniforme (Rouge vif) */
    display: inline-block;
    padding: 15px 30px;
    background-color: #8a0303;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: 2px solid #ff0000;
    cursor: pointer;
    font-family: 'Electrical', sans-serif;
    text-shadow: 0 0 5px #000;
}

#buttons a#yes-button:hover {
    background-color: #ff0000;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff0000;
}

/* Animation de scintillement du conteneur */
@keyframes boxFlicker {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.7); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
}