/* YouTube Video Protection Styles */
.video-protection-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
    background-color: #000;
}

.video-protection-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    /* Transparent, but blocks clicks */
    background-color: rgba(0,0,0,0);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.play-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #000;
}

.video-protection-wrapper.playing .play-button {
    opacity: 0;
    visibility: hidden;
}

.video-protection-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}