/* Content Blur when popup is active */
        .content-blurred {
            filter: blur(5px);
            pointer-events: none;
            user-select: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .search-bar {
            max-width: 500px;
            margin: 0 auto 30px auto;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            background-color: #2a2a2a;
            border: 2px solid #444;
            border-radius: 25px;
            color: #fff;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .search-bar input:focus {
            outline: none;
            border-color: #ff006e;
        }

        .search-bar i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        /* Updated Filter Options with Dynamic Gender Filters */
        .filter-section {
            margin-bottom: 30px;
        }

        .filter-row {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .filter-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .filter-group-title {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 10px;
            text-align: center;
            width: 100%;
        }

        .gender-filters {
            background: rgba(255, 0, 110, 0.05);
            border: 1px solid rgba(255, 0, 110, 0.2);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .filter-btn {
            padding: 10px 20px;
            background-color: #292929;
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            position: relative;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: #ff006e;
            border-color: #ff006e;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Dynamic gender-specific button styles */
        .filter-btn.gender-female.active {
            background: linear-gradient(45deg, #ff69b4, #ff1493);
            border-color: #ff1493;
        }

        .filter-btn.gender-male.active {
            background: linear-gradient(45deg, #4169e1, #1e90ff);
            border-color: #1e90ff;
        }

        .filter-btn.gender-couple.active {
            background: linear-gradient(45deg, #ff6347, #ff4500);
            border-color: #ff4500;
        }

        .filter-btn.gender-transgender.active,
        .filter-btn.gender-trans.active {
            background: linear-gradient(45deg, #9966cc, #8a2be2);
            border-color: #8a2be2;
        }

        /* Model count badge */
        .model-count-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 5px;
            font-weight: bold;
            min-width: 20px;
            text-align: center;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .model-card {
            background-color: #1e1e1e;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #333;
            position: relative;
        }

        .model-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 0, 110, 0.2);
            border-color: #ff006e;
        }

        .model-card.online {
            border-color: #28a745;
        }

        .model-card.vip {
            background: linear-gradient(135deg, #1e1e1e 0%, #2a1a2a 100%);
            border-color: #ffd700;
        }

        .model-thumbnail {
            position: relative;
            overflow: hidden;
        }

        .model-thumbnail img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .model-card:hover .model-thumbnail img {
            transform: scale(1.05);
        }

        .model-initials {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #ff006e, #ff4081, #e91e63);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .live-badge,
        .offline-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: bold;
            border-radius: 15px;
            text-transform: uppercase;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .live-badge {
            background-color: #dc3545;
            color: white;
            animation: pulse 2s infinite;
        }

        .offline-badge {
            background-color: #6c757d;
            color: white;
        }

        .vip-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #000;
            padding: 4px 8px;
            font-size: 10px;
            font-weight: bold;
            border-radius: 10px;
            text-transform: uppercase;
        }

        .stream-price {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #000;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        }

        .viewers {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background-color: rgba(0,0,0,0.8);
            padding: 6px 10px;
            font-size: 12px;
            border-radius: 6px;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .model-info {
            padding: 20px;
        }

        .model-info h3 {
            margin: 0 0 8px 0;
            font-size: 1.3rem;
            color: #fff;
            font-weight: 600;
        }

        .model-bio {
            font-size: 0.95rem;
            color: #ccc;
            margin-bottom: 15px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .model-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 12px;
        }

        .model-tags .tag {
            background-color: #ff006e;
            color: white;
            padding: 5px 12px;
            font-size: 11px;
            border-radius: 15px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .model-tags .tag.location {
            background-color: #17a2b8;
        }

        .model-tags .tag.age {
            background-color: #6f42c1;
        }

        .model-tags .tag.new {
            background-color: #28a745;
        }

        .model-tags .tag.gender {
            background-color: #ff6b35;
        }

        .model-tags .tag.gender.female {
            background: linear-gradient(45deg, #ff69b4, #ff1493);
        }

        .model-tags .tag.gender.male {
            background: linear-gradient(45deg, #4169e1, #1e90ff);
        }

        .model-tags .tag.gender.couple {
            background: linear-gradient(45deg, #ff6347, #ff4500);
        }

        .model-tags .tag.gender.transgender,
        .model-tags .tag.gender.trans {
            background: linear-gradient(45deg, #9966cc, #8a2be2);
        }

        /* Load More Section */
        .load-more-section {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px 20px;
        }

        .load-more-btn {
            background: linear-gradient(45deg, #ff006e, #ff4081);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
        }

        .load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .models-count-info {
            color: #ccc;
            font-size: 14px;
            margin-top: 15px;
        }

        .no-models {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            color: #666;
        }

        .no-models i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #444;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .online-indicator {
            width: 8px;
            height: 8px;
            background-color: #28a745;
            border-radius: 50%;
            display: inline-block;
        }

        .offline-indicator {
            width: 8px;
            height: 8px;
            background-color: #6c757d;
            border-radius: 50%;
            display: inline-block;
        }

        @media (max-width: 768px) {
            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .model-thumbnail img,
            .model-initials {
                height: 180px;
            }
            
            .model-info {
                padding: 15px;
                display: flex;
                flex-direction: column important;
            }

            .stats-bar {
                gap: 15px;
            }

            .stat-item {
                padding: 15px;
                min-width: 120px;
            }

            .age-verification-popup {
                padding: 30px 20px;
            }

            .age-verification-title {
                font-size: 1.5rem;
            }

            .age-verification-buttons {
                flex-direction: column;
            }

            .user-name {
                display: none;
            }

            .filter-row {
                gap: 10px;
            }

            .filter-group {
                gap: 8px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .filter-btn {
                padding: 8px 12px;
                font-size: 12px;
            }
            
            .models-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stats-bar {
                flex-direction: column;
                align-items: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .age-verification-logo {
                font-size: 2rem;
            }

            .gender-filters {
                padding: 15px;
            }
        }