/* Promotion Banner Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body.banner-active {
    padding-top: 50px;
}

body.banner-active .container {
    transition: padding-top 0.3s ease-out;
}

/* Video Controls Styles */
.video-controls button:hover {
    opacity: 0.7 !important;
}

.video-controls {
    opacity: 0;
    transition: opacity 0.3s;
}

.video-container > div:hover .video-controls {
    opacity: 1;
}