/* Modern Reset and Variables */
        :root {
            --primary-color: #e91e63;
            --secondary-color: #ff4081;
            --dark-bg: #0a0a0a;
            --card-bg: #161616;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --accent: #ff1744;
            --gradient: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            --border-radius: 12px;
        }
        
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Premium Header */
        .header {
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(233, 30, 99, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo i {
            font-size: 32px;
            color: var(--primary-color);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            display: flex;
            align-items: center;
        }
        
        .logo-top, .logo-videos {
            color: var(--primary-color);
        }
        
        .logo-cam {
            color: var(--text-primary);
        }
        
        .tagline {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            text-transform: none;
            letter-spacing: normal;
        }
        
        /* Premium Search Bar */
        .search-form {
            display: flex;
            flex: 1;
            max-width: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .search-form:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
        }
        
        .search-input {
            flex: 1;
            height: 44px;
            border: none;
            background: transparent;
            padding: 0 20px;
            font-size: 15px;
            color: var(--text-primary);
            outline: none;
        }
        
        .search-input::placeholder {
            color: var(--text-secondary);
        }
        
        .search-button {
            height: 44px;
            padding: 0 25px;
            background: var(--gradient);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .search-button:hover {
            transform: scale(1.05);
        }
        
        /* Navigation */
        .nav {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-link {
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-link:hover {
            background: rgba(233, 30, 99, 0.2);
            color: var(--primary-color);
        }
        
        .nav-link.active {
            background: var(--gradient);
            color: white;
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
            position: relative;
        }
        
        .hero-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--text-secondary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .hero-close:hover {
            background: rgba(233, 30, 99, 0.2);
            color: var(--primary-color);
        }
        
        .hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ffffff, #e91e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 50px;
            padding: 30px 20px;
            background: var(--card-bg);
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Main Content */
        .main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 20px 60px;
        }
        
        .main.no-hero {
            padding-top: 20px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-title i {
            color: var(--primary-color);
        }
        
        /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        /* Premium Video Cards */
        .video-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: var(--primary-color);
        }
        
        .thumbnail-container {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #000;
        }
        
        .thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .video-card:hover .thumbnail {
            transform: scale(1.1);
        }
        
        .video-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-preview.visible {
            opacity: 1;
        }
        
        /* Video Overlays */
        .video-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            z-index: 3;
        }
        
        .badge {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }
        
        .badge.hd {
            background: var(--gradient);
        }
        
        .duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            z-index: 3;
            backdrop-filter: blur(10px);
        }
        
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(233, 30, 99, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 3;
        }
        
        .video-card:hover .play-overlay {
            opacity: 1;
        }
        
        .play-overlay i {
            color: white;
            font-size: 24px;
            margin-left: 3px;
        }
        
        /* Video Info */
        .video-info {
            padding: 12px 10px;
        }
        
        .video-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            padding: 0 2px;
        }
        
        .video-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-secondary);
            gap: 10px;
        }
        
        .model-info {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 0 0 auto;
            min-width: 0;
            max-width: 60%;
            margin-left: -2px;
        }
        
        .model-info i {
            color: var(--primary-color);
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .model-info a {
            color: var(--text-secondary);
            font-size: 13px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .model-info a:hover {
            color: var(--primary-color);
        }
        
        .views {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            flex-shrink: 0;
            margin-left: auto;
            margin-right: 2px;
        }
        
        /* Premium Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 60px 0 20px 0;
            gap: 10px;
            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(--card-bg);
            color: var(--text-primary);
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .pagination span {
            background: var(--gradient);
            border: none;
        }
        
        .pagination a:hover {
            background: rgba(233, 30, 99, 0.2);
            border-color: var(--primary-color);
        }
        
        /* Premium Footer */
        .footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 60px 20px 30px;
            margin-top: 40px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .footer-section-logo {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-section-logo .footer-logo-top,
        .footer-section-logo .footer-logo-videos {
            color: var(--primary-color);
        }
        
        .footer-section-logo .footer-logo-cam {
            color: var(--text-primary);
        }
        
        .footer-section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }
        
        .footer-logo {
            display: inline-flex;
            align-items: center;
            font-size: 20px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .footer-logo-top, .footer-logo-videos {
            color: var(--primary-color);
        }
        
        .footer-logo-cam {
            color: var(--text-primary);
        }
        
        .footer-bottom a {
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--primary-color);
        }
        
        /* No Results */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 100px 20px;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        
        .no-results i {
            font-size: 64px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .no-results h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hidden hero state */
        .hero-wrapper.hidden {
            display: none;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 800px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .logo i {
                font-size: 28px;
            }
            
            .search-form {
                order: 3;
                max-width: 100%;
                flex-basis: 100%;
            }
            
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--card-bg);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
                box-shadow: var(--shadow);
            }
            
            .nav.active {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero-close {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
            }
            
            .stats-bar {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .pagination {
                margin: 40px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .header {
                padding: 15px 0;
            }
            
            .header-container {
                padding: 0 15px;
                gap: 15px;
            }
            
            .logo-main {
                font-size: 20px;
            }
            
            .tagline {
                font-size: 12px;
            }
            
            .search-input {
                font-size: 14px;
            }
            
            .search-button {
                padding: 0 20px;
                font-size: 14px;
            }
            
            .search-text {
                display: none;
            }
            
            .hero {
                padding: 40px 15px;
            }
            
            .stats-bar {
                padding: 20px 15px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .main {
                padding: 20px 15px 40px;
            }
            
            .main.no-hero {
                padding-top: 20px;
            }
            
            .pagination {
                gap: 5px;
            }
            
            .pagination a, .pagination span {
                min-width: 35px;
                height: 35px;
                padding: 0 12px;
                font-size: 14px;
            }
            
            .footer-content {
                text-align: center;
            }
            
            .footer-links {
                align-items: center;
            }
        }
        
        /* Loading Animation */
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }
        
        .loading {
            animation: pulse 1.5s infinite;
        }