.video-showcase {
    background: radial-gradient(circle at top, #13212f, #0c141d);
    padding: 70px 30px;
    color: #fff;
}

.video-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Layout */
.video-layout {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
}

/* Featured Video */
.video-featured-card {
    position: relative;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.video-featured-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
    z-index: 1;
}

.video-featured-info {
    position: absolute;
    left: 24px;
    bottom: 20px;
    max-width: 70%;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play.hide {
    opacity: 0;
    pointer-events: none;
}

.video-play {
    z-index: 2;
    
}

.video-featured-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.video-featured-info p {
    font-size: 14px;
    opacity: 0.85;
}

/* Play Button */
.video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play span {
    width: 0;
    height: 0;
    border-left: 18px solid #c01919;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video-play::before,
.video-play::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    animation: wave 1.8s infinite;
}

.video-play::after {
    animation-delay: 0.6s;
}

@keyframes wave {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.6); opacity: 0; }
}

/* Right Panel */
.video-side-panel {
    background: #121c26;
    border-radius: 18px;
    padding: 18px;
    height: 420px;
    display: flex;
    flex-direction: column;
}

/* Search */
.video-search-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.video-search-wrapper::before {
    content: "🔍";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.video-search {
    width: 100%;
    padding: 12px 14px 12px 36px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #0f1720;
    color: #fff;
}

/* Scrollable List */
.video-side-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 6px;
}

/* Scrollbar */
.video-side-list::-webkit-scrollbar {
    width: 6px;
}

.video-side-list::-webkit-scrollbar-thumb {
    background: #c01919;
    border-radius: 10px;
}

/* Video Item */
.video-side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    background: #0f1720;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-side-item:hover {
    background: #1c2a38;
}

.video-side-item.active {
    background: #1c2a38;
    box-shadow: 0 0 0 2px #c01919 inset;
}

.video-side-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.video-side-item span {
    font-size: 13.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .video-layout {
        grid-template-columns: 1fr;
    }
}
