/* Reset and base styles */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            background-color: #fafafa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Header styles */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        
        .logo-text {
            display: flex;
            align-items: baseline;
        }
        
        .logo-best {
            color: #fbbf24;
        }
        
        .logo-cam {
            color: #333;
        }
        
        .logo-videos {
            color: #fbbf24;
        }
        
        .search-container {
            flex: 1;
            max-width: 500px;
            position: relative;
        }
        
        .search-form {
            display: flex;
            align-items: center;
            background-color: #f3f4f6;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .search-form:focus-within {
            background-color: #e5e7eb;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }
        
        .search-icon {
            padding-left: 16px;
            color: #9ca3af;
        }
        
        .search-input {
            flex: 1;
            height: 40px;
            border: none;
            background: none;
            padding: 0 12px;
            font-size: 14px;
            outline: none;
        }
        
        .search-button {
            height: 40px;
            padding: 0 20px;
            background-color: #fbbf24;
            color: #333;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.2s;
        }
        
        .search-button:hover {
            background-color: #f59e0b;
        }
        
        .nav {
            display: flex;
            gap: 5px;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 20px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .nav-link:hover {
            background-color: #f3f4f6;
        }
        
        .nav-link i {
            font-size: 16px;
        }
        
        .nav-link.active {
            background-color: #fbbf24;
            color: #333;
        }
        
        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }
        
        /* Main content */
        .main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Date filter display */
        .date-filter-display {
            background-color: #fef3c7;
            border: 1px solid #fbbf24;
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
        }
        
        .date-filter-display a {
            color: #92400e;
            font-weight: 500;
            text-decoration: underline;
        }
        
        /* Heading section */
        .heading-container {
            margin-bottom: 30px;
        }
        
        .heading {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }
        
        .heading i {
            color: #fbbf24;
            margin-right: 10px;
        }
        
        /* Platform filters */
        .platform-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .platform-filter-btn {
            padding: 8px 20px;
            background-color: #fff;
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .platform-filter-btn:hover {
            border-color: #fbbf24;
            background-color: #fef3c7;
        }
        
        .platform-filter-btn.active {
            background-color: #fbbf24;
            border-color: #fbbf24;
            color: #333;
        }
        
        /* Video grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .video-card {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .video-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        .thumbnail-container {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background-color: #f3f4f6;
        }
        
        .thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .video-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .video-preview.visible {
            opacity: 1;
        }
        
        .thumbnail-container:hover .thumbnail {
            transform: scale(1.05);
        }
        
        .new-ribbon {
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: #ef4444;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 4px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.9;
                transform: scale(1.05);
            }
        }
        
        .duration-badge {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            z-index: 3;
        }
        
        .platform-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 3;
            background-color: rgba(251, 191, 36, 0.9);
            color: #333;
            backdrop-filter: blur(4px);
        }
        
        .video-info {
            padding: 12px;
        }
        
        .video-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
            height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            color: #333;
        }
        
        .video-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: #6b7280;
        }
        
        .video-model {
            display: flex;
            align-items: center;
            gap: 4px;
            text-align: left;
            flex: 1;
        }
        
        .video-model i {
            color: #fbbf24;
            flex-shrink: 0;
        }
        
        .video-model a {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .video-views {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin: 40px 0;
        }
        
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            background-color: #fff;
            color: #333;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .pagination a:hover {
            background-color: #fbbf24;
            border-color: #fbbf24;
            color: #333;
        }
        
        .pagination span {
            background-color: #fbbf24;
            border-color: #fbbf24;
            color: #333;
        }
        
        .pagination .dots {
            background: none;
            border: none;
            color: #9ca3af;
        }
        
        /* Footer */
        .footer {
            background-color: #1f2937;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 16px;
            color: #fbbf24;
        }
        
        .footer-section p {
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 12px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .footer-links a {
            color: #d1d5db;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: #fbbf24;
        }
        
        .footer-links i {
            width: 16px;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 20px;
            text-align: center;
            color: #9ca3af;
        }
        
        /* No results message */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        
        .no-results i {
            font-size: 48px;
            color: #fbbf24;
            margin-bottom: 16px;
            display: block;
        }
        
        .no-results h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #333;
        }
        
        .no-results p {
            color: #6b7280;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .nav-link span {
                display: none;
            }
            
            .nav-link {
                padding: 8px 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                padding: 12px 16px;
            }
            
            .logo {
                order: 1;
                flex: 1;
            }
            
            .mobile-menu-toggle {
                display: block;
                order: 2;
            }
            
            .search-container {
                order: 3;
                flex: 0 0 100%;
                max-width: none;
                margin-top: 12px;
            }
            
            .nav {
                display: none;
                order: 4;
                flex: 0 0 100%;
                margin-top: 12px;
                padding-top: 12px;
                border-top: 1px solid #e5e7eb;
            }
            
            .nav.mobile-open {
                display: flex;
                flex-wrap: wrap;
            }
            
            .nav-link {
                flex: 0 0 auto;
            }
            
            .nav-link span {
                display: inline;
            }
            
            .heading {
                font-size: 24px;
            }
            
            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
            
            .platform-badge {
                display: none;
            }
            
            .new-ribbon {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }
            
            .pagination a,
            .pagination span {
                min-width: 36px;
                height: 36px;
                font-size: 14px;
            }
            
            .platform-filters {
                width: 100%;
            }
            
            .platform-filter-btn {
                flex: 1;
                justify-content: center;
                font-size: 13px;
                padding: 6px 12px;
            }
        }
        
        /* Schema markup - hidden */
        .schema-markup {
            display: none;
        }