  /* Apply theme immediately */
        :root {
            --primary-red: #ff1744;
            --secondary-red: #ff4569;
            --accent-red: #ff6b8a;
            --black: #000000;
            --bg-primary: #0a0a0a;
            --bg-secondary: #141414;
            --bg-card: #1f1f1f;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        
        html.light-mode {
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-card: #ffffff;
            --text-primary: #2c3e50;
            --text-secondary: #7f8c8d;
            --border-color: #e9ecef;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        
        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            margin: 0;
            padding: 0;
        }
        
         /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            transition: background-color 0.3s, color 0.3s;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Header */
        .header {
            background: var(--bg-secondary);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s;
        }
        
        .header-top {
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0;
            font-size: 28px;
            font-weight: 900;
            letter-spacing: -2px;
            text-transform: uppercase;
        }
        
        .logo i {
            font-size: 32px;
            color: var(--primary-red);
            margin-right: 5px;
        }
        
        .logo-love {
            color: var(--primary-red);
        }
        
        .logo-cam {
            color: var(--text-primary);
        }
        
        .logo-porn {
            color: var(--primary-red);
        }
        
        .search-container {
            flex: 1;
            max-width: 600px;
        }
        
        .search-form {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .light-mode .search-form {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .search-form:focus-within {
            border-color: var(--primary-red);
            box-shadow: 0 4px 20px rgba(255, 23, 68, 0.2);
        }
        
        .search-input {
            flex: 1;
            border: none;
            padding: 12px 24px;
            font-size: 16px;
            background: transparent;
            outline: none;
            color: var(--text-primary);
        }
        
        .search-button {
            padding: 0 24px;
            background: var(--primary-red);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .search-button:hover {
            background: var(--secondary-red);
        }
        
        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--text-primary);
            font-size: 1.25rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .light-mode .theme-toggle {
            background: var(--primary-red);
            color: white;
        }
        
        .theme-toggle:hover {
            background: var(--primary-red);
            color: white;
        }
        
        .upload-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--primary-red);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .upload-btn:hover {
            background: var(--secondary-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 23, 68, 0.3);
        }
        
        /* Navigation */
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .nav-container::-webkit-scrollbar {
            display: none;
        }
        
        .nav {
            display: flex;
            gap: 0;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-red);
            background: rgba(255, 23, 68, 0.05);
        }
        
        .nav-link.active {
            color: var(--primary-red);
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-red);
        }
        
        /* Main Content */
        .main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        /* Page Header */
        .page-header {
            margin-bottom: 30px;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .page-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .page-title i {
            color: var(--primary-red);
        }
        
        /* Platform Filters */
        .platform-filters {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .platform-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }
        
        .light-mode .platform-filter-btn {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .platform-filter-btn:hover,
        .platform-filter-btn.active {
            background: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
            transform: translateY(-2px);
        }
        
        /* Date Filter Display */
        .date-filter-display {
            background: var(--primary-red);
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            box-shadow: var(--shadow);
        }
        
        .date-filter-display span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        
        .date-filter-display a {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .date-filter-display a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 0;
            margin-bottom: 40px;
        }
        
        .video-card {
            position: relative;
            overflow: hidden;
            background: var(--bg-card);
            transition: all 0.3s;
            border: 1px solid var(--border-color);
            cursor: pointer;
        }
        
        .video-card:hover {
            z-index: 10;
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }
        
        .thumbnail-container {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #000;
        }
        
        .thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .video-card:hover .thumbnail {
            transform: scale(1.1);
        }
        
        .video-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .video-preview.visible {
            opacity: 1;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0,0,0,0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 2;
            pointer-events: none;
        }
        
        .video-card:hover .video-overlay {
            opacity: 1;
            visibility: visible;
        }
        
        .video-card.show-info .video-overlay {
            opacity: 1;
            visibility: visible;
        }
        
        .video-duration {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            z-index: 2;
        }
        
        .video-quality {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary-red);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }
        
        .badge-new {
            position: absolute;
            top: 10px;
            left: 50px;
            background: #4caf50;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }
        
        .video-title {
            color: white;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .video-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
        }
        
        .video-meta i {
            font-size: 12px;
            opacity: 0.8;
        }
        
        .model-link {
            color: var(--accent-red);
            font-weight: 600;
        }
        
        .model-link:hover {
            text-decoration: underline;
        }
        
        /* Platform Badge */
        .platform-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--black);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        /* No Results */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            background: var(--bg-card);
            border-radius: 12px;
            margin: 40px 0;
        }
        
        .no-results i {
            font-size: 64px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .no-results h3 {
            font-size: 24px;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        
        .no-results p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 50px 0;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 15px;
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .pagination a:hover {
            background: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
            transform: translateY(-2px);
        }
        
        .pagination span {
            background: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
        }
        
        /* Footer */
        .footer {
            background: var(--bg-secondary);
            margin-top: 80px;
            padding: 60px 0 30px;
            border-top: 1px solid var(--border-color);
            transition: background-color 0.3s;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 0;
            text-transform: uppercase;
            letter-spacing: -1px;
            font-weight: 900;
        }
        
        .footer-about h3 i {
            color: var(--primary-red);
            margin-right: 5px;
        }
        
        .footer-about p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-stats {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 80px;
        }
        
        .stat-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-red);
            display: block;
            line-height: 1.2;
        }
        
        .stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            display: block;
            margin-top: 4px;
        }
        
        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-red);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-secondary);
            transition: all 0.3s;
        }
        
        .light-mode .social-links a {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .social-links a:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        
        @media (max-width: 968px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .logo {
                font-size: 30px;
            }
            
            .logo i {
                font-size: 24px;
            }
            
            .search-container {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
            }
            
            .header-actions {
                order: 2;
            }
            
            .upload-btn span {
                display: none;
            }
            
            .nav-container {
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            
            .nav-container::-webkit-scrollbar {
                display: none;
            }
            
            .nav {
                padding: 0;
            }
            
            .nav-link {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .page-title {
                font-size: 22px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .platform-filters {
                width: 100%;
                justify-content: center;
                gap: 8px;
            }
            
            .platform-filter-btn {
                font-size: 13px;
                padding: 6px 14px;
            }
            
            .platform-filters span {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .footer-stats {
                gap: 15px;
            }
            
            .stat-number {
                font-size: 20px;
            }
            
            .stat-label {
                font-size: 11px;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
                gap: 1px;
            }
            
            .video-card {
                border-radius: 0;
            }
            
            .video-duration,
            .video-quality {
                font-size: 11px;
                padding: 2px 6px;
            }
            
            .badge-new {
                display: none;
            }
            
            .pagination a,
            .pagination span {
                min-width: 35px;
                height: 35px;
                font-size: 14px;
                padding: 0 0.5rem;
            }
            
            .pagination a i,
            .pagination span i {
                font-size: 0.75rem;
            }
            
            .logo {
                font-size: 23px;
            }
            
            .nav-link {
                padding: 12px 12px;
            }
            
            .platform-filters {
                gap: 6px;
            }
            
            .platform-filter-btn {
                font-size: 12px;
                padding: 5px 12px;
            }
            
            .date-filter-display {
                font-size: 14px;
                padding: 12px 16px;
            }
        }