/* ─────────────────────────────────────────────
   Video Page
   ───────────────────────────────────────────── */

.video-page-section {
    padding: 60px 0;
    background: #21182C;
    min-height: 60vh;
}

/* ── Section Title ── */
.zlann-videos-title {
    margin: 0 0 36px;
    color: #89C8E7 !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
}

/* ── Video Card ── */
.zlann-video-card a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.zlann-video-card a:hover {
    color: #fff;
    text-decoration: none;
}

.zlann-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.zlann-video-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.zlann-video-card a:hover .zlann-video-thumb img {
    transform: scale(1.04);
}

.zlann-video-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

/* Play badge */
.zlann-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.zlann-video-play::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #1e1a2e;
    content: "";
    transform: translate(-50%, -50%);
}

.zlann-video-card a:hover .zlann-video-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

.zlann-video-card h3 {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.zlann-video-card a:hover h3 {
    color: #fff;
}

/* ── Empty state ── */
.zlann-videos-empty {
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    text-align: center;
}

/* ── Channel link ── */
.zlann-videos-channel-link {
    margin-top: 40px;
    text-align: center;
}

.zlann-videos-channel-link a {
    color: #8ac8e4;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.zlann-videos-channel-link a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── Section Divider ── */
.video-page-section+section {
    background: #21182C;
    padding: 10px 0;
}

.divider {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.js-video-playlist-categories-load-more-btn{
    background: #FED305 !important;
    color: #4D3766 !important;
    border-radius: 999px;
    border: none;
    padding: 0 32px;
    font-weight: 600;
    line-height: 40px;
    text-transform: none;
    font-size: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 639px) {
    .video-page-section {
        padding: 40px 0;
    }

    .zlann-videos-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
}