body {
            background-color: #121212;
            color: #fff;
            font-family: 'Segoe UI', sans-serif;
            margin: 0;
            padding: 0;
        }

         User Menu Styles 
        .user-menu {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .user-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid #ff006e;
            object-fit: cover;
        }

        .user-name {
            color: #fff;
            font-weight: 500;
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .user-type-badge {
            background: linear-gradient(45deg, #ff006e, #ff4081);
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 8px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .user-type-badge.model {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #000;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 8px;
            min-width: 180px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: none;
            z-index: 1000;
            margin-top: 10px;
        }

        .user-dropdown.show {
            display: block;
        }

        .user-dropdown a {
            display: block;
            padding: 12px 16px;
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s;
        }

        .user-dropdown a:hover {
            background-color: #333;
        }

        .user-dropdown a:last-child {
            border-bottom: none;
        }

        .user-dropdown a i {
            margin-right: 8px;
            width: 16px;
        }

        .user-toggle {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .user-toggle:hover {
            background-color: #333;
        }

        .user-initials {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff006e, #ff4081);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            color: white;
        }

         Age Verification Popup Styles 
        .age-verification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.5s ease;
        }

        .age-verification-popup {
            background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
            border: 2px solid #ff006e;
            animation: slideUp 0.5s ease;
            position: relative;
        }

        .age-verification-popup::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff006e, #ff4081, #e91e63, #ff006e);
            border-radius: 20px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite;
        }

        .age-verification-logo {
            font-size: 3rem;
            color: #ff006e;
            margin-bottom: 20px;
        }

        .age-verification-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
        }

        .age-verification-subtitle {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .age-verification-warning {
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid #dc3545;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 30px;
            font-size: 0.95rem;
            color: #fff;
        }

        .age-verification-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .age-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .age-btn.enter {
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
        }

        .age-btn.enter:hover {
            background: linear-gradient(45deg, #218838, #1ba085);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
        }

        .age-btn.exit {
            background: linear-gradient(45deg, #dc3545, #e74c3c);
            color: white;
        }

        .age-btn.exit:hover {
            background: linear-gradient(45deg, #c82333, #dc2626);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        }

        .age-verification-footer {
            margin-top: 25px;
            font-size: 0.85rem;
            color: #888;
            line-height: 1.4;
        }

        .age-verification-footer a {
            color: #ff006e;
            text-decoration: none;
        }

        .age-verification-footer a:hover {
            text-decoration: underline;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

         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;
        }

        .page-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 20px;
        }

        .hero-section {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 64, 129, 0.1));
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 0, 110, 0.2);
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff006e, #ff4081);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn.primary {
            background: linear-gradient(45deg, #ff006e, #ff4081);
            color: white;
        }

        .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
        }

        .cta-btn.secondary {
            background: transparent;
            color: #ff006e;
            border: 2px solid #ff006e;
        }

        .cta-btn.secondary:hover {
            background: #ff006e;
            color: white;
            transform: translateY(-3px);
        }

        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #1e1e1e;
            border-radius: 15px;
            border: 1px solid #333;
            min-width: 150px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ff006e;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 5px;
        }

        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
        }

        .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) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .model-thumbnail img,
            .model-initials {
                height: 180px;
            }
            
            .model-info {
                padding: 15px;
            }

            .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) {
            .page-title {
                font-size: 1.5rem;
            }
            
            .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;
            }
        }