#Video {
    padding: 60px 0;
}

#Video h1 {
    font-family: "Cinzel", serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
}

#Video figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Style des iframes */
#Video iframe {
    width: 90%;
    max-width: 900px;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #d10000; /* rouge Ferrari */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Video iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}
