.vod-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.vod-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    height: 100%;
}

.vod-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
}

.vod-content h2 {
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.vod-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.vod-btn {
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.vod-countdown {
    font-size: 1rem;
    margin-bottom: 10px;
    color: yellow;
}

.desktop-only { display: none; }
@media(min-width: 992px){
    .desktop-only { display: block; }
}
