        * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #1e3a5f;
	--secondary-color: #2c5f8d;
	--bg-dark: #0d1117;
	--bg-card: #161b22;
	--bg-hover: #21262d;
	--text-primary: #e6edf3;
	--text-secondary: #8b949e;
	--border-color: #30363d;
	--accent-gold: #f97316;
	--success-color: #10b981;
	--danger-color: #dc2626;
	--live-red: #ff4444;
	--accent-steel: #6b7280;
	--accent-orange: #ea580c;
	--accent-blue: #0ea5e9;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Header */
.header {
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-color);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(10px);
}

.header-content {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.logo {
	display: flex;
	align-items: center;
	height: 40px;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.3s;
}

.logo:hover {
	opacity: 0.8;
}

.logo img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--text-primary);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mobile-menu-btn {
	display: none;
	background: var(--bg-hover);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	width: 40px;
	height: 40px;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.mobile-menu-btn:hover {
	background: var(--bg-card);
	border-color: var(--primary-color);
}

.mobile-menu-btn.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 73px;
	left: 0;
	right: 0;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-color);
	padding: 1rem;
	z-index: 99;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	max-height: calc(100vh - 73px);
	overflow-y: auto;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s;
	margin-bottom: 0.5rem;
	font-weight: 500;
	border: 1px solid var(--border-color);
}

.mobile-menu-item:hover {
	background: var(--bg-hover);
	border-color: var(--primary-color);
}

.mobile-menu-item.primary {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border: none;
	color: white;
	font-weight: 600;
}

.mobile-menu-item.secondary {
	background: var(--bg-hover);
	border-color: var(--border-color);
}

.mobile-menu-item .icon {
	font-size: 1.1rem;
	width: 24px;
	text-align: center;
}

.mobile-menu-divider {
	height: 1px;
	background: var(--border-color);
	margin: 0.75rem 0;
}

.language-selector {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.875rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.language-selector .lang-text {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
}

.language-selector .lang-value {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Floating Discount Button */
.floating-discount {
	display: none;
}

.floating-discount:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(255, 0, 84, 0.7);
}

@keyframes pulse-discount {
0%, 100% {
	box-shadow: 0 4px 20px rgba(255, 0, 84, 0.5);
	}
50% {
	box-shadow: 0 6px 30px rgba(255, 0, 84, 0.8);
}
}

.floating-discount .discount-text {
	font-size: 0.7rem;
	font-weight: 700;
	color: white;
	text-align: center;
	line-height: 1.2;
}

/* Mobile Filter Modal */
.mobile-filter-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	backdrop-filter: blur(4px);
}

.mobile-filter-modal.active {
	display: block;
}

.mobile-filter-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-dark);
	overflow-y: auto;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.mobile-filter-modal.active .mobile-filter-content {
	transform: translateY(0);
}

.mobile-filter-header {
	position: sticky;
	top: 0;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-color);
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}

.mobile-filter-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
}

.mobile-filter-close {
	background: var(--bg-hover);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.5rem;
	transition: all 0.3s;
}

.mobile-filter-close:hover {
	background: var(--bg-card);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.mobile-filter-body {
	padding: 1.5rem;
}

.mobile-search-bar {
	margin-bottom: 1.5rem;
}

.search-input-wrapper {
	position: relative;
	width: 100%;
}

.search-input {
	width: 100%;
	padding: 1rem 1rem 1rem 3rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s;
}

.search-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}

.search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	pointer-events: none;
}

.mobile-filter-section {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.25rem;
	margin-bottom: 1rem;
}

.mobile-filter-section-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.mobile-filter-list {
	list-style: none;
}

.mobile-filter-item {
	padding: 0.75rem 0.875rem;
	border-radius: 8px;
	margin-bottom: 0.25rem;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-primary);
	font-size: 0.95rem;
}

.mobile-filter-item:hover {
	background: var(--bg-hover);
	color: var(--primary-color);
}

.mobile-filter-item.active {
	background: linear-gradient(135deg, rgba(30, 58, 95, 0.25), rgba(14, 165, 233, 0.15));
	color: var(--accent-blue);
	font-weight: 600;
}

.mobile-filter-count {
	font-size: 0.8rem;
	color: var(--text-secondary);
	background: var(--bg-hover);
	padding: 0.125rem 0.5rem;
	border-radius: 12px;
}

.filter-actions {
	position: sticky;
	bottom: 0;
	background: var(--bg-card);
	border-top: 1px solid var(--border-color);
	padding: 1rem 1.5rem;
	display: flex;
	gap: 0.75rem;
}

.filter-btn {
	flex: 1;
	padding: 1rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.filter-btn-apply {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
}

.filter-btn-apply:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
}

.filter-btn-reset {
	background: var(--bg-hover);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
}

.filter-btn-reset:hover {
	background: var(--bg-card);
	border-color: var(--primary-color);
}

/* Hide filter modal on desktop */
@media (min-width: 769px) {
.mobile-filter-modal {
	display: none !important;
}
}

.floating-discount .discount-percent {
	font-size: 1rem;
	font-weight: 900;
	color: white;
	line-height: 1;
	margin-bottom: 1px;
}

.floating-discount .discount-label {
	font-size: 0.5rem;
	font-weight: 600;
	color: white;
	opacity: 0.95;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	line-height: 1;
	margin-bottom: 1px;
}

.floating-discount .countdown-timer {
	font-size: 0.75rem;
	font-weight: 800;
	color: white;
	line-height: 1;
}

/* Modal Overlay */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-overlay.active {
	display: flex;
}

.modal-content {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	max-width: 450px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
from {
	opacity: 0;
	transform: translateY(-20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}

.modal-header {
	padding: 2rem 2rem 1rem;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--bg-hover);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.modal-close:hover {
	background: var(--danger-color);
	border-color: var(--danger-color);
	color: white;
}

.modal-discount-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff0054, #ff6b35);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 1.25rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.modal-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.modal-subtitle {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.modal-body {
	padding: 2rem;
}

.modal-body.welcome {
	display:none;
}

.auth-tabs {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.auth-tab {
	flex: 1;
	padding: 0.75rem;
	background: var(--bg-hover);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	font-weight: 600;
	color: var(--text-secondary);
	transition: all 0.3s;
}

.auth-tab.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	/*margin-bottom: 0.5rem;*/
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.9rem;
}

.form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--bg-hover);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 0.95rem;
	transition: all 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}

.form-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.form-checkbox input {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.form-checkbox label {
	font-size: 0.85rem;
	color: var(--text-secondary);
	cursor: pointer;
}

.form-submit {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border: none;
	border-radius: 50px;
	color: white;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 1rem;
}

a.form-submit {
	display:block;
	text-align:center;
	text-decoration:none;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(30, 58, 95, 0.5);
}

.form-link {
	text-align: center;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.form-link a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 600;
}

.form-link a:hover {
	text-decoration: underline;
}

.benefits-list {
	list-style: none;
	margin: 1.5rem 0;
}

.benefits-list li {
	padding: 0.3rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-primary);
	font-size: 0.9rem;
}

        .benefits-list li::before {
            content: '✓';
            background: var(--success-color);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .icon-btn {
            background: var(--bg-hover);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .icon-btn:hover {
            background: var(--bg-card);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .btn-login, .btn-account {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            padding: 0;
            border-radius: 50%;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
        }

        .btn-login::before, .btn-account::before {
            content: '👤';
            font-size: 1.2rem;
            opacity: 0.7;
            filter: grayscale(1) brightness(0.5);
        }

        .btn-login:hover, .btn-account:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .btn-login:hover::before, .btn-account:hover::before {
            opacity: 1;
            filter: grayscale(1) brightness(0.6);
        }

        .btn-join, .btn-credits {
            background: linear-gradient(135deg, #ea580c, #dc2626);
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
			text-transform:uppercase;
        }

        .btn-join:hover, .btn-credits:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(234, 88, 12, 0.5);
        }

        /* Header Hamburger Menu Button */
        .header-hamburger-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .header-hamburger-btn:hover {
            background: rgba(42, 42, 42, 0.9);
            border-color: var(--primary-color);
        }

        .header-hamburger-btn.active {
            background: rgba(30, 58, 95, 0.3);
            border-color: var(--primary-color);
            transform: rotate(90deg);
        }

        .hamburger-dot {
            width: 4px;
            height: 4px;
            background: var(--text-secondary);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .header-hamburger-btn:hover .hamburger-dot {
            background: var(--primary-color);
        }

        .header-hamburger-btn.active .hamburger-dot {
            background: var(--primary-color);
        }

        .header-hamburger-btn.active .hamburger-dot:nth-child(1) {
            transform: translateY(-6px);
        }

        .header-hamburger-btn.active .hamburger-dot:nth-child(3) {
            transform: translateY(6px);
        }

        /* Main Container */
        .main-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        /* Sidebar */
        .sidebar {
            width: 250px;
            flex-shrink: 0;
            position: sticky;
            top: 90px;
            height: fit-content;
        }

        .filter-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1rem;
        }

        .filter-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-list {
            list-style: none;
        }

        .filter-item {
            padding: 0.425rem 0.75rem;
            border-radius: 8px;
            margin-bottom: 0.25rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
        }

        .filter-item:hover {
            background: var(--bg-hover);
            color: var(--accent-blue);
        }

        .filter-item.active {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.25), rgba(14, 165, 233, 0.15));
            color: var(--accent-blue);
            font-weight: 600;
        }

        .filter-count {
            font-size: 0.8rem;
            color: var(--text-secondary);
            background: var(--bg-hover);
            padding: 0.125rem 0.5rem;
            border-radius: 12px;
        }

        /* Content Area */
        .content-area {
            flex: 1;
            min-width: 0;
        }

        /* Quick Filters */
        .quick-filters {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
        }

        /* Model Count & Active Filters Bar */
        .filters-info-bar {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
            padding: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            gap: 1rem;
        }

        .filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .filters-toggle {
            display: none;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-hover);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .filters-toggle:hover {
            background: var(--bg-card);
            border-color: var(--primary-color);
        }

        .filters-toggle .toggle-icon {
            transition: transform 0.3s;
        }

        .filters-toggle.active .toggle-icon {
            transform: rotate(180deg);
        }

        .filters-content {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            width: 100%;
        }

        .model-count {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
        }

        .model-count strong {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Quick Filters inside bar */
        .filters-info-bar .quick-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            flex: 1;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .active-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .active-filter-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .active-filter-tag {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(14, 165, 233, 0.2));
            border: 1px solid var(--primary-color);
            color: var(--accent-blue);
            padding: 0.375rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .active-filter-tag:hover {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.4), rgba(14, 165, 233, 0.3));
            transform: translateY(-1px);
        }

        .active-filter-tag .remove-icon {
            font-size: 1rem;
            font-weight: 700;
            opacity: 0.7;
        }

        .active-filter-tag:hover .remove-icon {
            opacity: 1;
        }

        .clear-all-filters {
            background: var(--bg-hover);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 0.375rem 0.875rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .clear-all-filters:hover {
            background: var(--bg-card);
            border-color: var(--danger-color);
            color: var(--danger-color);
        }

        /* Video Preview on Hover */
		.model-card .preview {
			position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
		}

		.model-card:hover .preview {
            opacity: 1;
        }

        .model-video-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            object-fit: cover;
        }

        .model-card:hover .model-video-preview {
            opacity: 1;
        }

        .model-card.online:hover .model-thumbnail img.profile {
            opacity: 0;
        }

        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
        }

        .pagination-btn {
            background: var(--bg-hover);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 0.625rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pagination-btn:hover:not(:disabled) {
            background: var(--bg-card);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .pagination-numbers {
            display: flex;
            gap: 0.375rem;
            align-items: center;
        }

        .pagination-number {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-hover);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .pagination-number:hover {
            background: var(--bg-card);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .pagination-number.active {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-color: var(--primary-color);
            color: white;
            font-weight: 700;
        }

        .pagination-ellipsis {
            color: var(--text-secondary);
            padding: 0 0.5rem;
            font-weight: 700;
        }

        .pagination-info {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0 1rem;
            white-space: nowrap;
        }

        /* Quick Filters */
        .quick-filters {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 0;
            flex-wrap: wrap;
        }

        .filter-chip {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 0.625rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .filter-chip:hover {
            border-color: var(--primary-color);
            background: rgba(30, 58, 95, 0.2);
        }

        .filter-chip.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        /* Models Grid */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        /* View Switcher */
        .view-switcher {
            display: none;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-hover);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 0.25rem;
        }

        .view-btn {
            padding: 0.5rem 0.75rem;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .view-btn:hover {
            color: var(--text-primary);
            background: var(--bg-card);
        }

        .view-btn.active {
            background: var(--primary-color);
            color: white;
        }

        .view-btn svg {
            width: 16px;
            height: 16px;
        }

        .model-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
			display:block;
        }

		.model-card.offline .model-thumbnail .profile  {
			filter: grayscale(50%) brightness(0.7);
		}

        .model-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(30, 58, 95, 0.4);
            border-color: var(--primary-color);
        }

        .model-thumbnail {
            position: relative;
            padding-top: 133.33%;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            overflow: hidden;
        }

        .model-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .live-badge {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            width: 10px;
            height: 10px;
            background: var(--live-red);
            border-radius: 50%;
            z-index: 2;
            animation: pulse-live 2s infinite;
        }

        @keyframes pulse-live {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
            }
            50% {
                box-shadow: 0 0 0 5px rgba(255, 0, 0, 0);
            }
        }

        .offline-badge {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            background: rgba(0, 0, 0, 0.7);
            color: var(--text-secondary);
            padding: 0.375rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Favorite Heart Icon */
        .favorite-heart {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .favorite-heart:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        .favorite-heart svg {
            width: 18px;
            height: 18px;
            transition: all 0.3s ease;
        }

        /* Not favorited - grey outline */
        .favorite-heart:not(.favorited) svg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.5);
            stroke-width: 2;
        }

        .favorite-heart:not(.favorited):hover svg {
            stroke: rgba(255, 255, 255, 0.8);
        }

        /* Favorited - red filled */
        .favorite-heart.favorited {
            background: rgba(255, 0, 84, 0.2);
            border-color: rgba(255, 0, 84, 0.3);
        }

        .favorite-heart.favorited svg {
            fill: #ff0054;
            stroke: #ff0054;
            stroke-width: 2;
        }

        .favorite-heart.favorited:hover {
            background: rgba(255, 0, 84, 0.3);
            transform: scale(1.15);
        }

        /* Animation when favoriting */
        @keyframes heart-pop {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1.1); }
        }

        .favorite-heart.favorited {
            animation: heart-pop 0.3s ease;
        }

        .model-overlay {
            display: none;
        }

        .model-tags {
            display: flex;
            gap: 0.375rem;
            flex-wrap: wrap;
            margin-bottom: 0.5rem;
        }

        .tag {
            background: rgba(30, 58, 95, 0.4);
            color: white;
            padding: 0.25rem 0.625rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .model-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0.75rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .model-info-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .model-price {
            color: var(--accent-gold);
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.2rem;
            margin-bottom: 0.25rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .model-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .model-details {
            font-size: 0.75rem;
            color: var(--text-primary);
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
        }

        .model-card:hover .model-details {
            opacity: 1;
            transform: translateX(0);
        }

        .viewers {
            display: none;
        }

        .viewers {
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .age-location {
            display: flex;
            gap: 0.5rem;
        }

        /* Footer */
        .footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .footer-logos {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            opacity: 0.6;
        }

        /* Mobile FAB Menu */
        /* Mobile FAB Overlay */
        .fab-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .fab-overlay.active {
            display: block;
            opacity: 1;
            pointer-events: all;
        }

        .mobile-fab {
            display: none;
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
        }

        .fab-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(30, 58, 95, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* FAB Offer Mode */
        .fab-button.offer-mode {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, #ff0054, #ff6b35);
            animation: pulse-offer 2s infinite;
        }

        @keyframes pulse-offer {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(255, 0, 84, 0.5);
            }
            50% {
                box-shadow: 0 6px 30px rgba(255, 0, 84, 0.8);
            }
        }

        .fab-offer-content {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8px;
        }

        .fab-button.offer-mode .fab-offer-content {
            display: flex;
        }

        .fab-button.offer-mode .fab-icon {
            display: none;
        }

        .fab-offer-percent {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 2px;
            line-height: 1;
        }

        .fab-offer-label {
            font-size: 0.6rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            margin-bottom: 2px;
            line-height: 1;
        }

        .fab-offer-timer {
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .fab-button:active {
            transform: scale(0.95);
        }

        .fab-button.active {
            transform: rotate(45deg);
        }

        .fab-icon {
            width: 24px;
            height: 24px;
            display: grid;
            grid-template-columns: repeat(2, 8px);
            grid-gap: 4px;
            transition: all 0.3s ease;
        }

        .fab-icon span {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .fab-button.active .fab-icon span:nth-child(1) {
            transform: translate(6px, 6px);
        }

        .fab-button.active .fab-icon span:nth-child(2) {
            transform: translate(-6px, 6px);
        }

        .fab-button.active .fab-icon span:nth-child(3) {
            transform: translate(6px, -6px);
        }

        .fab-button.active .fab-icon span:nth-child(4) {
            transform: translate(-6px, -6px);
        }

        .fab-menu {
            position: absolute;
            bottom: 75px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            max-width: 90vw;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            pointer-events: none;
        }

        .fab-menu.active {
            transform: translateX(-50%) scale(1);
            opacity: 1;
            pointer-events: all;
        }

        .fab-menu-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 10px 16px;
            border-radius: 50px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            transform: scale(0);
        }

        .fab-menu.active .fab-menu-item {
            transform: scale(1);
        }

        .fab-menu.active .fab-menu-item:nth-child(1) {
            transition-delay: 0.05s;
        }

        .fab-menu.active .fab-menu-item:nth-child(2) {
            transition-delay: 0.08s;
        }

        .fab-menu.active .fab-menu-item:nth-child(3) {
            transition-delay: 0.11s;
        }

        .fab-menu.active .fab-menu-item:nth-child(4) {
            transition-delay: 0.14s;
        }

        .fab-menu.active .fab-menu-item:nth-child(5) {
            transition-delay: 0.17s;
        }

        .fab-menu.active .fab-menu-item:nth-child(6) {
            transition-delay: 0.2s;
        }

        .fab-menu.active .fab-menu-item:nth-child(7) {
            transition-delay: 0.23s;
        }

        .fab-menu.active .fab-menu-item:nth-child(8) {
            transition-delay: 0.26s;
        }

        .fab-menu-item:active {
            transform: scale(0.95);
        }

        .fab-menu-item .icon {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        /* Deals FAB Item */
        .fab-deals {
            background: linear-gradient(135deg, #ff0054, #ff6b35);
            border: none;
            color: white;
            animation: pulse-deals 2s infinite;
        }

        @keyframes pulse-deals {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(255, 0, 84, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 6px 20px rgba(255, 0, 84, 0.7);
                transform: scale(1.05);
            }
        }

        .fab-menu.active .fab-deals {
            animation: pulse-deals 2s infinite;
        }

        .fab-deals:active {
            transform: scale(0.95) !important;
        }

        /* Right Side Header FAB Menu */
        /* Header FAB Overlay */
        .header-fab-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 997;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .header-fab-overlay.active {
            display: block;
            opacity: 1;
            pointer-events: all;
        }

        .header-fab {
            display: block;
            position: fixed;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 998;
        }

        .header-fab-button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .header-fab-button:hover {
            background: rgba(42, 42, 42, 0.9);
            border-color: var(--primary-color);
        }

        .header-fab-button.active {
            background: rgba(30, 58, 95, 0.3);
            border-color: var(--primary-color);
            transform: rotate(90deg) scale(1.05);
        }

        .header-fab-dot {
            width: 4px;
            height: 4px;
            background: var(--text-secondary);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .header-fab-button:hover .header-fab-dot {
            background: var(--primary-color);
        }

        .header-fab-button.active .header-fab-dot {
            background: var(--primary-color);
        }

        .header-fab-button.active .header-fab-dot:nth-child(1) {
            transform: translateY(-6px);
        }

        .header-fab-button.active .header-fab-dot:nth-child(3) {
            transform: translateY(6px);
        }

        .header-fab-menu {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%) scale(0);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            min-width: 320px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .header-fab-menu.active {
            transform: translateY(-50%) scale(1);
            opacity: 1;
            pointer-events: all;
        }

        .header-fab-menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 16px 12px;
            border-radius: 12px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            min-height: 80px;
        }

        .header-fab-menu-item:hover {
            background: var(--bg-hover);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .header-fab-menu-item .icon {
            font-size: 1.5rem;
        }

        .header-fab-menu-item.highlight {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-color: var(--primary-color);
            color: white;
        }

        .header-fab-menu-item.highlight:hover {
            transform: translateY(-2px) scale(1.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-fab {
                display: block;
            }

            .header-hamburger-btn {
                display: none;
            }
        }
        @media (max-width: 1200px) {
            .sidebar {
                width: 220px;
            }

            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        @media (max-width: 1024px) {
            .sidebar {
                display: none;
            }

            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            }

            .main-container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0.75rem 0;
            }

            .header-content {
                gap: 1rem;
                padding: 0 1rem;
            }

            .logo {
                height: 32px;
                flex: 1;
            }

            /* Responsive Filters Info Bar */
            .filters-info-bar {
                padding: 0.75rem;
                gap: 0;
            }

            .filters-header {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                justify-content: space-between;
            }

            .filters-toggle {
                display: flex;
            }

            .filters-content {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
                margin-top: 0;
            }

            .filters-content.expanded {
                max-height: 500px;
                opacity: 1;
                margin-top: 1rem;
            }

            .filters-info-bar .quick-filters {
                width: 100%;
                justify-content: flex-start;
                margin-bottom: 0.75rem;
            }

            .active-filters {
                width: 100%;
                justify-content: flex-start;
            }

            .model-count {
                font-size: 0.9rem;
            }

            /* Responsive Pagination */
            .pagination-container {
                flex-wrap: wrap;
                padding: 1rem;
                gap: 0.75rem;
            }

            .pagination-info {
                order: -1;
                width: 100%;
                text-align: center;
                margin: 0 0 0.5rem 0;
                font-size: 0.85rem;
            }

            .pagination-btn {
                font-size: 0.85rem;
                padding: 0.5rem 0.75rem;
            }

            .pagination-numbers {
                gap: 0.25rem;
            }

            .pagination-number {
                min-width: 36px;
                height: 36px;
                font-size: 0.85rem;
            }

            .model-price {
                font-size: 0.65rem;
                gap: 0.15rem;
            }


            .nav-links {
                display: none;
            }

            .header-actions {
                gap: 0.5rem;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .icon-btn {
                display: flex;
                width: 36px;
                height: 36px;
            }

            .btn-login {
                width: 36px;
                height: 36px;
                padding: 0;
                border-radius: 50%;
                font-size: 0 !important;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .btn-login::before {
                content: '👤';
                font-size: 1.1rem;
                opacity: 0.9;
                filter: brightness(0) invert(1);
            }

            .btn-login:hover::before {
                opacity: 1;
            }

            .btn-join {
                padding: 0.5rem 0.875rem;
                font-size: 0.8rem;
            }

            .main-container {
                padding: 0 0.75rem;
                margin-top: 1rem;
                gap: 1rem;
            }

            .quick-filters {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 0.5rem;
                gap: 0.5rem;
                margin-bottom: 1rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .quick-filters::-webkit-scrollbar {
                display: none;
            }

            .filter-chip {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
                flex-shrink: 0;
            }

            /* Removed mobile search icon prefix */

            /* Show view switcher on mobile */
            .view-switcher {
                display: flex;
            }

            /* Default: 3 column view on mobile */
            .models-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.5rem;
            }

            /* 2 column view (bigger cards) */
            .models-grid.view-2col {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .model-card {
                border-radius: 8px;
            }

            .model-thumbnail {
                padding-top: 140%;
            }

            .live-badge {
                top: 0.5rem;
                left: 0.5rem;
                width: 10px;
                height: 10px;
            }

            .offline-badge {
                top: 0.5rem;
                left: 0.5rem;
                padding: 0.3rem 0.6rem;
                font-size: 0.7rem;
            }

            .model-info {
                padding: 0.5rem;
            }

            .model-name {
                font-size: 0.8rem;
                margin-bottom: 0;
            }

            .model-details {
                font-size: 0.65rem;
            }

            .model-overlay {
                padding: 0.75rem;
            }

            .tag {
                font-size: 0.65rem;
                padding: 0.2rem 0.5rem;
            }

            .footer {
                padding: 2rem 0 1.5rem;
                margin-top: 2rem;
            }

            .footer-content {
                padding: 0 1rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .footer-section h3 {
                font-size: 0.85rem;
            }

            .footer-section ul li a {
                font-size: 0.85rem;
            }

            .footer-bottom {
                font-size: 0.8rem;
                padding-top: 1.5rem;
            }

            .footer-logos {
                gap: 1.5rem;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 0 0.75rem;
            }

            .logo {
                height: 28px;
            }

            .mobile-menu-btn {
                width: 36px;
                height: 36px;
            }

            .header-actions {
                gap: 0.375rem;
            }

            .btn-login {
                padding: 0.45rem 0.75rem;
                font-size: 0.75rem;
            }

            .btn-join {
                padding: 0.45rem 0.75rem;
                font-size: 0.75rem;
            }

            .main-container {
                padding: 0 0.5rem;
            }

            .quick-filters {
                margin-bottom: 0.75rem;
            }

            .filter-chip {
                padding: 0.45rem 0.9rem;
                font-size: 0.8rem;
            }

            .models-grid {
                gap: 0.5rem;
            }

            .model-card {
                border-radius: 8px;
            }

            .model-info {
                padding: 0.625rem;
            }

            .model-name {
                font-size: 0.85rem;
            }

            .model-details {
                font-size: 0.7rem;
            }

            .viewers {
                gap: 0.25rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .footer-bottom p {
                font-size: 0.75rem;
            }

            .floating-discount {
                width: 75px;
                height: 75px;
                bottom: 20px;
                right: 20px;
                padding: 6px;
            }

            .floating-discount .discount-percent {
                font-size: 0.9rem;
                margin-bottom: 1px;
            }

            .floating-discount .discount-label {
                font-size: 0.45rem;
                margin-bottom: 1px;
            }

            .floating-discount .countdown-timer {
                font-size: 0.7rem;
            }

            .floating-discount .discount-label {
                font-size: 0.55rem;
            }

            .modal-content {
                margin: 0 0.5rem;
            }

            .modal-header {
                padding: 1.5rem 1.5rem 1rem;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-title {
                font-size: 1.5rem;
            }

            .modal-discount-badge {
                font-size: 1.1rem;
                padding: 0.4rem 1.25rem;
            }
        }