/* Le combo classique : Fond noir, texte dégueu, police interdite */
body {
    background-color: #ffffff;
    color: #00FF00; /* Vert Matrix */
    font-family: "Comic Sans MS", "Chalkboard SE", cursive, sans-serif;
    margin: 10px;
    padding: 0;
}

header {
    text-align: center;
    background: linear-gradient(to right, #ff00ff, #00ffff);
    color: #000;
    padding: 15px;
    border: 5px outset #ff0000;
}

h1 {
    font-size: 3em;
    text-shadow: 3px 3px #ffff00;
    margin: 10px 0;
}

.subtitle {
    font-weight: bold;
    font-style: italic;
    color: #0000ff;
}

hr {
    border: 3px dashed #ff00ff;
    margin: 20px 0;
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Les boîtes avec de grosses bordures 3D comme à l'époque */
.box {
    background-color: #212121;
    border: 4px ridge #ffffff;
    padding: 15px;
    margin-bottom: 25px;
}

h2 {
    background-color: #000080; /* Bleu Windows 98 */
    color: white;
    padding: 5px;
    font-size: 1.2em;
    margin-top: 0;
}

.warning {
    color: #ff0000;
    font-weight: bold;
    animation: clignotement 1s infinite;
}

/* Layout de la galerie */
.grid {
    display: flex;
    gap: 15px;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Placeholders pour les images que tu vas créer */
.img-placeholder {
    width: 300px;
    height: 200px;
    background-color: #333;
    border: 3px dashed #ffff00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
}

/* Formulaire rétro */
form {
    line-height: 2;
}

input, select {
    background-color: #ffffcc;
    border: 2px solid #ff00ff;
    color: #000;
    font-family: monospace;
}

.prix {
    font-size: 1.5em;
    color: #ffff00;
}

.btn-commander {
    background-color: #ff0000;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px;
    border: 4px outset #ffffff;
    cursor: pointer;
    width: 100%;
}

.btn-commander:hover {
    background-color: #bf0000;
    border: 4px inset #ffffff;
}

/* Pied de page */
footer {
    text-align: center;
    font-size: 0.8em;
    color: #888888;
}

.counter {
    background-color: #222;
    border: 2px solid #00ff00;
    display: inline-block;
    padding: 5px 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    color: #ff00ff;
    margin-bottom: 15px;
}

.btn-party {
    background: yellow;
    color: black;
    font-weight: bold;
    padding: 10px;
    margin-top: 10px;
    border-radius: 20px;
    cursor: pointer;
}

/* Animations d'époque */
@keyframes clignotement {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Mode Flash provoqué par le JS */
.flash-active {
    animation: flash-bg 0.2s infinite;
}

@keyframes flash-bg {
    0% { background-color: #ff0000; }
    50% { background-color: #000000; }
    100% { background-color: #ff0000; }
}

.video-container {
    max-height: 50vh;
}

video {
    height: 400px;
}