
        /* ===== VIDEO PAGE ===== */
        .video-hero {
            background: linear-gradient(135deg, #003a8f 0%, #1a56b0 60%, #2d7dd2 100%);
            color: #fff;
            padding: 60px 24px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .video-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
            background-size: 28px 28px;
        }

        .video-hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0; right: 0;
            height: 52px;
            background: #f7f8fc;
            clip-path: ellipse(55% 100% at 50% 100%);
        }

        .video-hero-inner {
            position: relative;
            z-index: 1;
        }

        .video-hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 100px;
            margin-bottom: 18px;
        }

        .video-hero h1 {
            font-family: 'Noto Serif', Georgia, serif;
            font-size: 36px;
            font-weight: 600;
            margin: 0 0 12px;
        }

        .video-hero p {
            font-size: 15px;
            opacity: 0.82;
            margin: 0;
        }

        /* ===== MAIN LAYOUT ===== */
        .video-page {
            max-width: 1100px;
            margin: 0 auto;
            padding: 52px 24px 80px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 36px;
            align-items: start;
        }

        /* ===== PLAYER SECTION ===== */
        .video-player-wrap {
            position: sticky;
            top: 90px;
        }

        .video-player-box {
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/9;
            box-shadow: 0 20px 50px rgba(0,58,143,0.18);
            transition: all 0.3s ease;
        }

        /* Shorts горим — босоо */
        .video-player-box.is-shorts {
            aspect-ratio: 9/16;
            max-width: 340px;
            margin: 0 auto;
        }

        .video-player-box iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Shorts badge */
        .shorts-badge {
            display: none;
            background: #ff0000;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 9px;
            border-radius: 100px;
            letter-spacing: 0.05em;
            margin-left: 6px;
            vertical-align: middle;
        }

        .playlist-item[data-shorts="true"] .shorts-badge {
            display: inline-block;
        }

        .video-player-box .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0b2c4d, #1a56b0);
            color: #fff;
            cursor: pointer;
        }

        .play-btn-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: 2px solid rgba(255,255,255,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 16px;
            transition: background 0.2s;
        }

        .video-placeholder:hover .play-btn-circle {
            background: rgba(255,255,255,0.25);
        }

        .video-placeholder p {
            font-size: 15px;
            opacity: 0.8;
        }

        /* Now playing info */
        .now-playing {
            margin-top: 18px;
            padding: 16px 20px;
            background: #fff;
            border: 1px solid #dde3f0;
            border-radius: 14px;
        }

        .now-playing-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #f5c542;
            background: #003a8f;
            padding: 2px 10px;
            border-radius: 100px;
            display: inline-block;
            margin-bottom: 8px;
        }

        .now-playing h3 {
            font-size: 16px;
            color: #003a8f;
            font-weight: 600;
            margin: 0 0 4px;
        }

        .now-playing p {
            font-size: 13px;
            color: #888;
            margin: 0;
        }

        /* ===== PLAYLIST ===== */
        .playlist-wrap h2 {
            font-family: 'Noto Serif', Georgia, serif;
            font-size: 18px;
            color: #003a8f;
            margin: 0 0 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e8f0fe;
        }

        .playlist {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .playlist-item {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid #dde3f0;
            background: #fff;
            cursor: pointer;
            transition: all 0.18s ease;
        }

        .playlist-item:hover {
            border-color: #003a8f;
            background: #e8f0fe;
        }

        .playlist-item.active {
            border-color: #003a8f;
            background: #e8f0fe;
        }

        .playlist-num {
            width: 32px;
            min-width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #003a8f;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .playlist-item.active .playlist-num {
            background: #f5c542;
            color: #003a8f;
        }

        .playlist-info {
            flex: 1;
            min-width: 0;
        }

        .playlist-info h4 {
            font-size: 13.5px;
            font-weight: 600;
            color: #003a8f;
            margin: 0 0 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .playlist-info span {
            font-size: 11.5px;
            color: #888;
        }

        .playlist-arrow {
            font-size: 16px;
            color: #bbb;
            flex-shrink: 0;
        }

        .playlist-item.active .playlist-arrow {
            color: #003a8f;
        }

        /* ===== ADD MORE CTA ===== */
        .add-video-cta {
            margin-top: 16px;
            padding: 14px;
            border: 2px dashed #cdddf5;
            border-radius: 12px;
            text-align: center;
            color: #888;
            font-size: 13px;
        }

        /* ===== CATEGORY TABS ===== */
        .category-tabs {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: -36px;
        }

        .cat-tab {
            padding: 7px 16px;
            border-radius: 100px;
            border: 1px solid #dde3f0;
            background: #fff;
            font-size: 13px;
            color: #555;
            cursor: pointer;
            transition: all 0.15s;
        }

        .cat-tab:hover, .cat-tab.active {
            background: #003a8f;
            color: #fff;
            border-color: #003a8f;
        }
        /* ── БУЦАХ ТОВЧ ── */
.video-back-bar {
    max-width: 1100px;
    margin: 28px auto 0;
    padding: 0 24px;
}
.video-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #fff;
    border: 1.5px solid #dde3f0;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #003a8f;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,58,143,0.08);
}
.video-back-btn .back-arrow {
    font-size: 16px;
    transition: transform 0.2s;
}
.video-back-btn:hover {
    background: #003a8f;
    color: #fff;
    border-color: #003a8f;
    box-shadow: 0 4px 16px rgba(0,58,143,0.2);
}
.video-back-btn:hover .back-arrow {
    transform: translateX(-3px);
}

/* ── VIDEO COVER IMG ── */
.video-cover-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.3s;
}
.video-thumb .video-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.22);
    transition: background 0.2s;
    pointer-events: none;
}
.video-thumb .video-play::before {
    content: '';
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    position: absolute;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.15s;
}
.video-play-icon {
    position: relative; z-index: 1;
    font-size: 20px; color: #003a8f;
    margin-left: 3px;
}
.video-card:hover .video-thumb .video-play { background: rgba(0,58,143,0.35); }
.video-card:hover .video-thumb .video-play::before { transform: scale(1.1); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .video-page {
                grid-template-columns: 1fr;
            }
            .video-player-wrap {
                position: static;
            }
            .playlist-wrap {
                order: 2;
            }
        }

        @media (max-width: 600px) {
            .video-hero h1 { font-size: 24px; }
            .video-page { padding: 32px 16px 60px; gap: 24px; }
        }
    