.youtube-video-block .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.youtube-video-block .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Cover Photo Styles */
.youtube-video-block .cover-photo-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.youtube-video-block .cover-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Play Button Overlay */
.youtube-video-block .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 3px solid #ffffff;
}

.youtube-video-block .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-video-block .play-button svg {
    width: 65px;
    height: 65px;
    color: #ffffff;
    margin-left: 6px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

/* Watch Text */
.youtube-video-block .watch-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 70px));
    font-family: 'Daikon', sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
    margin-top: 16px;
}

/* Video Container */
.youtube-video-block .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.youtube-video-block .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .youtube-video-block .container {
        padding-top: 0 !important;
    }

    .youtube-video-block .play-button {
        width: 60px;
        height: 60px;
    }

    .youtube-video-block .play-button svg {
        width: 49px;
        height: 49px;
    }

    .youtube-video-block .watch-text {
        font-size: 40px;
        transform: translate(-50%, calc(-50% + 55px));
    }
}

@media screen and (max-width: 480px) {
    .youtube-video-block .play-button {
        width: 50px;
        height: 50px;
    }

    .youtube-video-block .play-button svg {
        width: 41px;
        height: 41px;
    }

    .youtube-video-block .watch-text {
        font-size: 28px;
        transform: translate(-50%, calc(-50% + 45px));
    }
}