.video-container {
    position: relative;
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Bouton style YouTube */
.play-button {
    position: absolute;
    width: 70px;
    height: 50px;
    background-color: red;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

/* Flèche blanche */
.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* Effet au survol */
.play-button:hover {
    background-color: #cc0000;
}

.video-title {
    font-weight: bold;
    font-size: 0.9em;
    text-align: left;
    margin-top: 2px;
    max-width: 100%;
    word-wrap: break-word;
}
