<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#videoContainer {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

#initialPlayerState {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

#adImage {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#playButtonOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: background-color 0.2s ease;
}

#initialPlayerState:hover #playButtonOverlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.playIconTriangle {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 5px;
}


#vastVideo, #youtubePlayer iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#youtubePlayer {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#skipButton {
    position: absolute;
    bottom: 15px;
    right: 10px;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

#skipCountdown {
    position: absolute;
    bottom: 15px;
    right: 10px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    display: none;
    font-size: 12px;
}</pre></body></html>