
/* --- 3. VIDEO STYLE (Cinema Mode) --- */
.video-cinema-area {
    padding: 80px 0;
    background: var(--navy);
    color: white;
}

.video-ratio-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}
.video-ratio-container iframe,
.video-ratio-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info-box h2 {
    margin-top: 20px;
    font-size: 24px;
    color: #fff;
}

/* Playlist Horizontal Slider */
.video-playlist-slider {
    margin-top: 40px;
}
.playlist-label {
    color: #ffc107;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 15px;
}
.playlist-flex {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
}
.playlist-flex::-webkit-scrollbar {
    height: 5px;
}
.playlist-flex::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.sidebar-item {
    min-width: 260px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}
.sidebar-item.active-video {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}
.side-thumb {
    position: relative;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.sidebar-item:hover .play-overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .news-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .news-row {
        grid-template-columns: 1fr;
    }
}