/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background: #1f1f1f;
    padding: 20px;
    border-bottom: 4px solid #007BFF;
}

h1 {
    font-size: 2.2em;
    color: #00d4ff;
}

h2 {
    color: #ffa500;
    margin-top: 40px;
}

/* Sections */
section {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Liste des énigmes */
.enigme {
    background: #252525;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.enigme h3 {
    color: #00ffcc;
}

/* Vidéo */
iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 10px;
}

/* Galerie d'images */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.capture {
    display: flex;
    align-items: center;
    background: #252525;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 700px;
}

.capture img {
    width: 40%;
    max-width: 250px;
    border-radius: 8px;
    margin-right: 15px;
}

.capture p {
    flex: 1;
    color: #e0e0e0;
    font-size: 1.1em;
}


/* Bouton de téléchargement */
.btn-download {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #007BFF, #00d4ff);
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-download:hover {
    background: linear-gradient(45deg, #00d4ff, #007BFF);
}

/* Footer */
footer {
    background: #1f1f1f;
    padding: 15px;
    margin-top: 30px;
}
