body {
    font-family: 'Inter', sans-serif;
}

.recommandation {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    margin-left: 20px;
}

.recommandation>* {
    flex: 0 0 auto;
}

.vidéoYouTube {
    width: 373px;
    height: 210px;
    border: solid 1px #ccc;
    border-radius: 10px;
    box-shadow: 7px 3px 20px rgb(206, 206, 206);
}

.video-youtube {
    width: 373px;
    height: 210px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.video-placeholder:hover img {
    filter: brightness(80%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0.9;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .play-button {
    opacity: 1;
}

.video-youtube iframe {
    width: 100%;
    height: 100%;
}

