﻿.yt-video-container {
    overflow: hidden;
    cursor: pointer;
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6); /* Translucent background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

    /* Create the triangle inside the play button */
    .yt-play-btn::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 20px;
        border-color: transparent transparent transparent white;
        margin-left: 5px; /* Adjust centering of triangle */
    }

.yt-video-container:hover .yt-play-btn {
    background-color: rgba(255, 0, 0, 0.8); /* Red on hover */
}
