
/* ============== style.css - Complete Responsive Styles ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}







/* All original styles maintained - just keeping them as-is */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #000000 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    animation: rotateBackground 15s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.age-warning-banner {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    0% { box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4); }
    100% { box-shadow: 0 5px 25px rgba(255, 20, 147, 0.8); }
}

.fire-icon {
    display: inline-block;
    animation: fireFlicker 0.5s infinite alternate;
}

@keyframes fireFlicker {
    0% { transform: scale(1) rotate(-1deg); }
    100% { transform: scale(1.1) rotate(1deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ff6347, #ff1493);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hotGradient 3s ease-in-out infinite;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    letter-spacing: 2px;
}

@keyframes hotGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.coming-soon-badge {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
    padding: 20px 30px;
    border-radius: 15px;
    margin: 25px auto;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: goldShine 3s infinite;
    border: 2px solid #ffd700;
    max-width: 500px;
}

@keyframes goldShine {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7); }
}

.badge-text {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.badge-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    background: linear-gradient(120deg, #ff1493, #ff6347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.2em;
}

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 20, 147, 0.3);
    animation: benefitGlow 2s infinite alternate;
}

@keyframes benefitGlow {
    0% { box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2); }
    100% { box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4); }
}

.benefit-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.cta-btn {
    padding: 25px 45px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff1493, #ff6347, #dc143c, #ff1493);
    background-size: 400% 400%;
    border-radius: 60px;
    z-index: -2;
    animation: glowPulse 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes glowPulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.cta-btn:hover .btn-glow {
    opacity: 0.8;
    animation: glowPulse 1s ease-in-out infinite;
}

.creator-btn {
    background: linear-gradient(45deg, #ff1493, #dc143c, #8b0000);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: creatorPulse 3s ease-in-out infinite;
}

@keyframes creatorPulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1) rotateX(0deg);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05) rotateX(2deg);
    }
}

.fan-btn {
    background: linear-gradient(45deg, #ff6347, #ff4500, #ff1493);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fanPulse 3s ease-in-out infinite 0.5s;
}

@keyframes fanPulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1) rotateX(0deg);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05) rotateX(-2deg);
    }
}

.cta-btn:hover {
    transform: translateY(-8px) scale(1.08) perspective(1000px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(255, 20, 147, 0.8);
    letter-spacing: 4px;
}

.creator-btn:hover {
    background: linear-gradient(45deg, #ff0066, #cc0000, #660000);
    box-shadow: 0 25px 60px rgba(255, 20, 147, 0.9);
}

.fan-btn:hover {
    background: linear-gradient(45deg, #ff4500, #ff0000, #ff1493);
    box-shadow: 0 25px 60px rgba(255, 99, 71, 0.9);
}

.btn-main-text {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover .btn-main-text {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.heart-icon {
    display: inline-block;
    color: #ff1493;
    animation: heartBeat 1s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.launch-info {
    margin-top: 35px;
}

.launch-text {
    font-size: 1.1rem;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
    line-height: 1.6;
}

.filter-section-new {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.center-filters-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.center-filters-row:last-of-type {
    margin-bottom: 25px;
}

.filter-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff69b4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.center-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.center-filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.center-filter-btn:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: #ff1493;
    transform: translateY(-2px);
}

.center-filter-btn.active {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    border-color: #ff1493;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.model-count-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.gender-male { border-color: #4a90e2; }
.gender-male.active { background: linear-gradient(45deg, #4a90e2, #357abd); }
.gender-female { border-color: #ff69b4; }
.gender-female.active { background: linear-gradient(45deg, #ff69b4, #ff1493); }
.gender-transgender { border-color: #9b59b6; }
.gender-transgender.active { background: linear-gradient(45deg, #9b59b6, #8e44ad); }

.advanced-filters-trigger {
    text-align: center;
    margin-top: 20px;
}

.open-filters-btn {
    padding: 15px 35px;
    background: linear-gradient(45deg, #ff1493, #dc143c);
    border: 2px solid #ff1493;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.open-filters-btn:hover {
    background: linear-gradient(45deg, #ff0066, #cc0000);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

.active-filters-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid #1a1a1a;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filters-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #1a1a1a;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.filters-sidebar.active {
    right: 0;
}

.sidebar-header {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-sidebar {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-sidebar:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 25px;
}

.sidebar-filter-group {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.sidebar-filter-group:last-child {
    border-bottom: none;
}

.sidebar-filter-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-count {
    background: #ff1493;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-left: auto;
}

.sidebar-filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-filter-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.95rem;
}

.sidebar-filter-btn:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: #ff1493;
}

.sidebar-filter-btn.active {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    border-color: #ff1493;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.category-search {
    margin-bottom: 15px;
}

.category-search input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
}

.sidebar-category-options {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.sidebar-category-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 8px;
}

.sidebar-category-option:hover {
    background: rgba(255, 20, 147, 0.1);
}

.sidebar-category-option input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.category-label {
    color: #fff;
    font-size: 0.95rem;
}

.selected-categories-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.selected-category-tag {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.remove-category {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
}

.remove-category:hover {
    background: rgba(255, 255, 255, 0.4);
}

.sidebar-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-clear-sidebar, .btn-apply-sidebar {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-sidebar {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-clear-sidebar:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-apply-sidebar {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
}

.btn-apply-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.advanced-search {
    position: relative;
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 20, 147, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.clear-search:hover {
    background: #ff1493;
    transform: translateY(-50%) scale(1.1);
}

.search-tip {
    color: #ff69b4;
    font-style: italic;
    margin-top: 10px;
}

.tag.orientation {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.tag.category {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    font-size: 0.85rem;
}

.filters-sidebar::-webkit-scrollbar,
.sidebar-category-options::-webkit-scrollbar {
    width: 8px;
}

.filters-sidebar::-webkit-scrollbar-track,
.sidebar-category-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb,
.sidebar-category-options::-webkit-scrollbar-thumb {
    background: #ff1493;
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover,
.sidebar-category-options::-webkit-scrollbar-thumb:hover {
    background: #dc143c;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 20px;
        margin: 10px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .age-warning-banner {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .coming-soon-badge {
        padding: 20px 25px;
        max-width: 90%;
    }
    
    .badge-text {
        font-size: 1.8rem;
    }
    
    .badge-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 320px;
        padding: 20px 25px;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 350px;
        font-size: 1.1rem;
        padding: 22px 40px;
        letter-spacing: 2px;
    }
    
    .filter-section-new {
        padding: 20px 15px;
    }
    
    .center-filters-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-label {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .center-filter-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .center-filter-btn {
        flex: 1;
        min-width: calc(50% - 6px);
        justify-content: center;
    }
    
    .filters-sidebar {
        width: 320px;
        right: -320px;
    }
    
    .open-filters-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .age-warning-banner {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .coming-soon-badge {
        padding: 18px 20px;
        max-width: 95%;
    }
    
    .badge-text {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        max-width: 300px;
        font-size: 1rem;
        padding: 20px 35px;
    }
    
    .center-filter-btn {
        min-width: 100%;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .filters-sidebar {
        width: 100%;
        right: -100%;
    }
}







.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #1a1a1a;
    padding: 15px 0;
    border-bottom: 3px solid #ff006e;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff006e;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

img.logo-image {
    width: 100px;
    height: auto;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.toggle-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    transition: all 0.3s;
}

.toggle-icon::before {
    top: -8px;
}

.toggle-icon::after {
    bottom: -8px;
}

/* Transform hamburger to X when active */
.mobile-menu-toggle.active .toggle-icon {
    background: transparent;
}

.mobile-menu-toggle.active .toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    background: #333;
    color: #ff006e;
}

.nav-menu a i {
    margin-right: 8px;
}

.btn-login, .btn-register {
    background: #ff006e;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 25px !important;
    font-weight: bold !important;
}

.btn-login:hover, .btn-register:hover {
    background: #e0005c !important;
    transform: translateY(-2px);
}

.btn-logout {
    background: #dc3545;
}

.btn-logout:hover {
    background: #c82333 !important;
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Page Title */
.page-title {
    font-size: 36px;
    margin: 40px 0;
    text-align: center;
    background: linear-gradient(45deg, #ff006e, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.model-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #ff006e;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.model-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.model-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.model-card:hover .model-thumbnail img {
    transform: scale(1.1);
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff006e;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.viewers {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.model-info {
    padding: 20px;
}

.model-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ff006e;
}

.model-bio {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.model-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

/* Stream Page */
.stream-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    max-width: 1600px;
    margin: 0 auto;
}

.video-section {
    flex: 1;
}

.video-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream-info {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.stream-info h1 {
    margin-bottom: 15px;
    color: #ff006e;
}

.stream-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    color: #ccc;
}

.tip-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    background: #ff006e;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #e0005c;
    transform: translateY(-2px);
}

.btn-tip {
    background: #4CAF50;
}

.btn-tip:hover {
    background: #45a049;
}

.btn-private {
    background: #9C27B0;
}

.btn-private:hover {
    background: #7B1FA2;
}

.btn-filter {
    background: #333;
}

/* Chat Section */
.chat-section {
    width: 380px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 700px;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid #333;
}

.chat-header h3 {
    color: #ff006e;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 10px;
    background: #252525;
    border-radius: 8px;
    word-wrap: break-word;
}

.chat-message strong {
    color: #ff006e;
    margin-right: 8px;
}

.chat-time {
    color: #666;
    font-size: 12px;
    margin-right: 8px;
}

.chat-input-wrapper {
    padding: 20px;
    border-top: 1px solid #333;
    display: flex;
    gap: 10px;
}

.chat-input-wrapper input {
    flex: 1;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
}

.chat-input-wrapper button {
    background: #ff006e;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.chat-login-prompt {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.chat-login-prompt a {
    color: #ff006e;
    text-decoration: none;
    font-weight: bold;
}

/* Auth Forms */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.auth-form h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #ff006e;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #0f0f0f;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff006e;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.btn-primary {
    background: #ff006e;
}

.btn-primary:hover {
    background: #e0005c;
}

.btn-success {
    background: #4CAF50;
}

.btn-success:hover {
    background: #45a049;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
}

.auth-footer a {
    color: #ff006e;
    text-decoration: none;
    font-weight: bold;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #ff6b6b;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #81C784;
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #ff006e;
}

.stat-card h3 {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #ff006e;
}

.broadcast-section,
.profile-section {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.broadcast-section h2,
.profile-section h2 {
    margin-bottom: 20px;
    color: #ff006e;
}

.broadcast-form {
    max-width: 500px;
}

.live-info {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    padding: 20px;
    border-radius: 8px;
}

.live-info p {
    margin-bottom: 10px;
    color: #81C784;
}

/* Admin Panel */
.admin-header {
    background: #1a1a1a;
    padding: 20px;
    border-bottom: 3px solid #ff006e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.admin-sidebar {
    width: 250px;
    background: #1a1a1a;
    padding: 20px;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-sidebar a {
    color: #ccc;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: #ff006e;
    color: #fff;
}

.admin-content {
    flex: 1;
    padding: 30px;
}

/* Footer */
.footer {
    background: #14141f;
    color: #c1c1d0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    margin-top: 50px;
    border-top: 3px solid #ff006e;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus {
    text-decoration: underline;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex: 1 1 200px;
}

.site-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ff006e;
}

.age-note {
    font-size: 0.7rem;
    color: #aaa;
}

.footer-nav {
    display: flex;
    gap: 1rem;
    flex: 2 1 300px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex: 1 1 120px;
    justify-content: flex-end;
}

.social-icon svg {
    display: block;
    stroke: #c1c1d0;
}

.footer-bottom {
    border-top: 1px solid #2a2a3f;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.small {
    margin: 0;
    font-size: 0.7rem;
    color: #999;
}

/* Additional Elements */
.live-count {
    font-size: 18px;
    color: #ccc;
}

.no-models {
    text-align: center;
    grid-column: 1 / -1;
    padding: 50px;
    color: #888;
}

.no-models i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ff006e;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 30px 0;
}

.page-link {
    padding: 8px 16px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.page-link:hover, 
.page-link.active {
    background: #ff006e;
}

/* Search and Filters */
.search-filters {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input, 
.filter-select {
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
}

.search-filters input {
    flex: 1;
}

/* Tip Modal */
.tip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.tip-modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #ff006e;
}

.tip-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.tip-amount {
    background: #ff006e;
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.tip-amount:hover {
    background: #e0005c;
    transform: scale(1.05);
}

.custom-tip {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.custom-tip input {
    flex: 1;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.close-tip-modal {
    background: #666;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.favorite-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.favorite-btn.favorited,
.favorite-btn i.favorited {
    color: #ff006e;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: #4CAF50;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #2196F3;
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design - Tablet */
@media (max-width: 1200px) {
    .stream-container {
        flex-direction: column;
    }
    
    .chat-section {
        width: 100%;
        height: 500px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        gap: 5px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 5px;
        border-radius: 4px;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
    }
    
    .admin-sidebar nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
        margin: 30px 0;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .search-filters input,
    .search-filters select {
        width: 100%;
    }
    
    .tip-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stream-info h1 {
        font-size: 24px;
    }
    
    .tip-section {
        flex-direction: column;
    }
    
    .tip-section .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    img.logo-image {
        width: 60px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model-card {
        margin: 0 auto;
        max-width: 350px;
        width: 100%;
    }
    
    .auth-form {
        padding: 25px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .chat-section {
        height: 400px;
    }
    
    .tip-modal-content {
        padding: 20px;
    }
    
    .tip-amounts {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar nav {
        flex-wrap: wrap;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
}

/* Ultra small devices */
@media (max-width: 360px) {
    .logo {
        font-size: 20px;
    }
    
    img.logo-image {
        width: 60px;
    }
    
    .model-info h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 10px 0;
    }
    
    .nav-menu {
        padding-top: 60px;
    }
    
    .chat-section {
        height: 350px;
    }
    
    .video-wrapper {
        padding-bottom: 40%;
    }
}