.featured-videos-section {
        background: #000000;
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: #8b92a7;
        margin: 0;
    }

    /* Empty State */
    .empty-featured {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 20px;
        padding: 4rem 2rem;
    }

    .empty-icon {
        width: 120px;
        height: 120px;
        background: #252a31;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    /* Featured Videos Masonry Grid */
    .masonry-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        grid-auto-flow: dense;
    }

    .featured-video-card {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    /* Portrait Videos */
    .featured-video-card.portrait {
        grid-row: span 2;
    }

    /* Landscape Videos */
    .featured-video-card.landscape {
        grid-column: span 1;
    }

    .featured-video-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
        z-index: 10;
    }

    .featured-video-thumbnail {
        position: relative;
        width: 100%;
        background: #000;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .featured-video-card.portrait .featured-video-thumbnail {
        aspect-ratio: 9/16;
        height: 500px;
    }

    .featured-video-card.landscape .featured-video-thumbnail {
        aspect-ratio: 16/9;
        height: 250px;
    }

    .featured-video-preview {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
        background: #000;
    }

    .featured-video-card:hover .featured-video-preview {
        transform: scale(1.08);
    }

    .featured-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 4rem;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        pointer-events: none;
    }

    .featured-video-card:hover .featured-play-btn {
        opacity: 1;
    }

    .featured-duration {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
    }

    .featured-orientation {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.4rem 0.5rem;
        border-radius: 6px;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
    }

    /* Video Player Modal */
    .modal-dark .modal-content {
        background: #1a1d23;
        border: 1px solid #2d3238;
    }

    .modal-dark .modal-header {
        border-bottom: 1px solid #2d3238;
        color: #ffffff;
    }

    #featuredVideoPlayer {
        display: block;
        background: #000;
        max-height: 80vh;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .masonry-grid {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        }

        .featured-video-card.portrait .featured-video-thumbnail {
            height: 400px;
        }
    }

    @media (max-width: 991.98px) {
        .masonry-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .featured-video-card.portrait .featured-video-thumbnail {
            height: 350px;
        }

        .featured-video-card.landscape .featured-video-thumbnail {
            height: 200px;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }
    }

    @media (max-width: 767.98px) {
        .masonry-grid {
            grid-template-columns: 1fr;
        }

        .featured-video-card.portrait .featured-video-thumbnail {
            height: 450px;
        }

        .featured-video-card.landscape .featured-video-thumbnail {
            height: 250px;
        }

        .section-title {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 575.98px) {
        .featured-videos-section {
            padding: 3rem 0;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .featured-video-card.portrait .featured-video-thumbnail {
            height: 500px;
        }

        .featured-video-card.landscape .featured-video-thumbnail {
            height: 220px;
        }
    }