/* Video clickable styling for ad2.html only */
#promotional_video {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

#promotional_video:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

#promotional_video::before {
    content: "TAP TO INSTALL";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#promotional_video:hover::before {
    opacity: 1;
} 
