  .video-container {
        position: relative;
        display: inline-block;
        border-radius: 8px;
        overflow: hidden;
        width: 100%;
    }

    .video-container img {
        display: block;
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .video-container:hover img {
        transform: scale(1.05);
    }

    .video-container .badge {
        position: absolute;
        bottom: 8px;
        right: 8px;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        font-size: 11px;
        border-radius: 4px;
        padding: 2px 6px;
        font-weight: 500;
    }

    .modern-video-card {
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .modern-video-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .modern-video-card .card-body {
        padding: 0;
    }

    .video-info {
        padding: 12px;
    }

    .video-title {
        font-size: 14px;
        line-height: 1.3;
        height: 2.6em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 8px;
        color: #333;
        font-weight: 500;
    }

    .video-stats {
        font-size: 11px;
        color: #666;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        color: white;
        font-size: 3rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .video-container:hover .play-overlay {
        opacity: 0.9;
    }

    .preview-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .video-container:hover .preview-video {
        opacity: 1;
    }

    .video-container:hover .video-thumbnail {
        opacity: 0;
    }

    .video-thumbnail {
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .video-container:hover .play-overlay {
        opacity: 0;
    }

    @media (max-width: 768px) {
        .video-container img {
            height: 150px;
        }

        .video-title {
            font-size: 13px;
        }

        .play-overlay {
            font-size: 2.5rem;
        }

        /* Disable video preview on mobile for performance */
        .preview-video {
            display: none;
        }
    }
