/* ===== STYLE GLOBAL (identique à tes autres travaux) ===== */

body {
    background-color: #b2ffff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    color: #009999;
    font-size: 3em;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

p {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* ===== VIDEO CENTRÉE ===== */

.video-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.video-container iframe {
    width: 80%;
    max-width: 800px;
    height: 450px;
    border-radius: 15px;
    border: 4px solid #009999;
}

/* ===== BLOCS LIENS ===== */

.links-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* permet retour à la ligne si écran petit */
    gap: 15px;
    margin: 40px 0;
}

.link-card {
    background-color: #009999;
    border-radius: 10px;
    width: auto;
    padding: 12px 20px;
    transition: 0.2s;
}

.link-card:hover {
    background-color: #006666;
    transform: translateY(-2px);
}

.link-card a {
    text-decoration: none;
    font-size: 1.1em;
    color: white;
    display: block;
}

/* ===== BOUTON QUIZ ===== */

.quiz-button {
    background-color: #009999;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: 0.2s;
}

.quiz-button:hover {
    background-color: #006666;
}

/* ===== MODALE QUIZ ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #cfffff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    text-align: left;
    border: 3px solid #006666;
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
    color: #660033;
}

.modal button {
    background-color: #009999;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}