      /* Video Listing Page Styles */
        .video-listing-page {
            padding: 40px 0;
        }
        
        .page-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #eaeaea;
        }
        
        .page-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .page-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* Video Categories/Tabs */
        .video-categories {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .video-categories::-webkit-scrollbar {
            height: 4px;
        }
        
        .video-categories::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        .video-categories::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        
        .category-tab {
            padding: 8px 20px;
            background: #f5f5f5;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            color: #555;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .category-tab:hover {
            background: #e0e0e0;
        }
        
        .category-tab.active {
            background: #ff0000;
            color: white;
        }
        
        /* Video Grid Layout */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 992px) {
            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        /* Video Card Styles */
        .video-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            text-decoration: none;
            color: inherit;
        }
        
        .card-thumbnail {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
        }
        
        .card-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .video-card:hover .card-thumbnail img {
            transform: scale(1.05);
        }
        
        .video-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .play-icon i {
            color: #ff0000;
            font-size: 24px;
            margin-left: 5px;
        }
        
        .video-card:hover .play-icon {
            opacity: 1;
        }
        
        .live-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #ff0000;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        .premium-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: gold;
            color: #000;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
        .card-content {
            padding: 16px;
        }
        
        .card-title {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 10px;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 13px;
            color: #666;
        }
        
        .card-author {
            font-weight: 500;
            color: #555;
        }
        
        .card-stats {
            display: flex;
            gap: 15px;
            font-size: 13px;
            color: #888;
        }
        
        .card-stats span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .card-stats i {
            font-size: 12px;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .pagination .page-link {
            padding: 8px 16px;
            margin: 0 4px;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .pagination .page-link:hover {
            background: #f5f5f5;
            border-color: #ccc;
        }
        
        .pagination .page-link.active {
            background: #ff0000;
            color: white;
            border-color: #ff0000;
        }
        
        .pagination .page-link.disabled {
            color: #ccc;
            cursor: not-allowed;
        }
        
        /* Sidebar */
        .video-sidebar {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
        }
        
        .sidebar-item {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-thumbnail {
            width: 120px;
            height: 68px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .sidebar-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sidebar-content {
            flex: 1;
        }
        
        .sidebar-item-title {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 5px;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .sidebar-item-meta {
            font-size: 12px;
            color: #888;
        }
        
        /* Featured Video */
        .featured-video {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .featured-content {
            padding: 40px;
            text-align: center;
        }
        
        .featured-content h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .featured-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .featured-btn {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: #764ba2;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .featured-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: #f9f9f9;
            border-radius: 12px;
            margin: 40px 0;
        }
        
        .empty-state i {
            font-size: 60px;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .empty-state h3 {
            font-size: 24px;
            font-weight: 600;
            color: #666;
            margin-bottom: 10px;
        }
        
        .empty-state p {
            color: #888;
            font-size: 16px;
        }