.video-detail-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.video-detail-card {
    background: #fff;
    border: 1px solid #dbe7f5;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.video-player-wrap {
    overflow: hidden;
    border-radius: 24px;
    background: #0f172a;
}

.video-player-wrap .plyr,
.video-player-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-detail-content {
    padding: 24px 8px 8px;
}

.video-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.video-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #bcfe5a;
    color: #0a4ea1;
    font-size: 13px;
    font-weight: 700;
}

.video-chip.muted {
    background: #f1f5f9;
    color: #475569;
}

.video-detail-content h1 {
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.video-detail-content p {
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
    max-width: 920px;
}

.video-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.related-video-wrap {
    margin-top: 42px;
}

.related-video-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #dbe7f5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.related-video-thumb {
    aspect-ratio: 16 / 9;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-video-thumb span {
    color: #0a4ea1;
    font-size: 42px;
}

.related-video-body {
    padding: 14px;
}

.related-video-body span {
    display: inline-block;
    color: #0a4ea1;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.related-video-body h5 {
    color: #0f172a;
    font-size: 15px !important;
    line-height: 1.4;
    margin-bottom: 0;
}
.related-video-body h5:hover {
    color: #0a4ea1;
}

@media (max-width: 767.98px) {
    .video-detail-card {
        padding: 12px;
        border-radius: 22px;
    }

    .video-detail-content {
        padding: 18px 4px 4px;
    }
}
