/* Reset and Base Styles - WCAG 2.2 Compliant */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* WCAG 2.2 Focus Management */
*:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard users */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:root {
    /* Colors - Updated to match erodate style */
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --secondary-gradient: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    --accent-gradient: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9); /* Improved contrast for WCAG 2.2 */
    --text-muted: rgba(255, 255, 255, 0.75); /* Improved contrast for WCAG 2.2 */
    --text-accent: #ff6b35; /* Changed from pink to orange */
    
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    --border-glass: rgba(255, 255, 255, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.15); /* Changed to orange glow */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Status Colors */
    --status-online: #4ade80;
    --status-away: #f59e0b;
    --status-offline: #6b7280;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Monaco', monospace;
    
    /* Spacing */
    --container-max: 1400px;
    --container-padding: 2rem;
    --section-spacing: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px; /* Space for urgency banner */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 2rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.brand-name {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Auth Buttons */
.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-height: 44px; /* WCAG touch target */
    display: flex;
    align-items: center;
}

.register-btn {
    background: #3BCB00;
    color: white;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 203, 0, 0.4);
}

.login-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--text-accent);
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-accent);
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
}

.mobile-btn.register-btn {
    background: var(--secondary-gradient);
    color: white;
}

.mobile-btn.login-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-glass);
}

.mobile-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px; /* Space for urgency banner + navbar */
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--dark-gradient);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.gradient-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-gradient);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-gradient);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.emoji {
    -webkit-text-fill-color: initial;
    background: none;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.scroll-arrow:hover {
    color: var(--text-accent);
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Girls Section */
.girls-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Girl Cards */
.girl-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.girl-photo {
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-glass);
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.girl-card:hover .profile-img {
    transform: scale(1.05);
}

.girl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 24px;
}

.girl-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.3);
}

.girl-card:hover::before {
    opacity: 0.1;
}

.card-background {
    position: relative;
    z-index: 1;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.status-indicator.online {
    background: rgba(74, 222, 128, 0.15);
    color: var(--status-online);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-indicator.away {
    background: rgba(245, 158, 11, 0.15);
    color: var(--status-away);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-content {
    position: relative;
    z-index: 1;
}

.girl-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.girl-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.age::before {
    content: '🎂 ';
}

.location::before {
    content: '📍 ';
}

.girl-preview {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.card-action {
    margin-top: 1.5rem;
}

.chat-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--secondary-gradient);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
}

.chat-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.chat-btn:hover .btn-icon {
    transform: scale(1.2);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--primary-gradient);
    border-radius: 26px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
    filter: blur(8px);
}

.girl-card:hover .card-glow {
    opacity: 0.3;
}

/* About Section */
.about-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.features-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.feature-text {
    text-align: left;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-text {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-note {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    animation: slideUp 0.4s ease-out;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Profile Content */
.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-details {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.profile-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.profile-description {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.profile-description h3 {
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.profile-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.profile-interests {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.interest-tag {
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.profile-cta {
    text-align: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--secondary-gradient);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

/* CTA Sections */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: #3BCB00;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glass);
}

.cta-btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 203, 0, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.5);
}

/* Login Modal Styles */
.login-content {
    text-align: center;
    padding: 1rem;
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.login-description {
    margin-bottom: 2rem;
}

.login-description p {
    color: var(--text-muted);
    font-size: 1rem;
}

.login-buttons {
    display: flex;
    flex-direction: column;
}

/* Mobile-First Responsive Design - WCAG 2.2 Compliant */

/* Base mobile styles (0-768px) */
.girls-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.desktop-menu {
    display: none;
}

.hamburger-btn {
    display: flex;
}

/* Mobile menu toggle - handled in nav-container above */

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        position: relative;
        width: 100%;
    }
    
    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hamburger-btn {
        position: absolute;
        right: 0;
    }
}

.feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.feature-text {
    text-align: center;
}

.footer-content {
    flex-direction: column;
    text-align: center;
}

.footer-text {
    text-align: center;
}

.cta-buttons {
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    min-height: 44px; /* WCAG touch target size */
}

.modal-content {
    margin: 1rem;
    padding: 1.5rem;
    max-height: 85vh;
}

.girl-card {
    padding: 1.25rem;
}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
}

/* Tablet styles (768px+) */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --section-spacing: 6rem;
    }
    
    .girls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .desktop-menu {
        display: flex;
    }
    
    .hamburger-btn {
        display: none;
    }
    
    .nav-auth {
        gap: 1rem;
    }
    
    .nav-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
    }
    
    .feature-text {
        text-align: left;
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .footer-text {
        text-align: right;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-btn {
        width: auto;
        min-width: 200px;
    }
    
    .girl-card {
        padding: 1.5rem;
    }
}

/* Desktop styles (1024px+) */
@media (min-width: 1024px) {
    :root {
        --section-spacing: 8rem;
    }
    
    .girls-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .girl-card {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --bg-primary: #000000;
        --border-glass: rgba(255, 255, 255, 0.5);
    }
    
    .girl-card {
        border: 2px solid #ffffff;
    }
    
    .status-indicator {
        border: 2px solid currentColor;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .chat-btn, .cta-btn {
        min-height: 44px; /* WCAG touch target size */
        padding: 1rem 1.5rem;
    }
    
    .girl-card:hover {
        transform: none; /* Remove hover effects on touch devices */
    }
}

/* Small mobile optimization */
@media (max-width: 375px) {
    .girl-card {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .urgency-banner {
        font-size: 0.75rem;
    }
    
    .mobile-nav-link {
        font-size: 1.2rem;
    }
    
    .mobile-btn {
        min-width: 180px;
        font-size: 0.9rem;
    }
    

}

/* Conversion Boosters */
.online-counter {
    display: none;
}

.counter-icon {
    animation: pulse 1.5s infinite;
}

.notification-toast {
    position: fixed;
    bottom: 20px;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.notification-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.toast-icon {
    font-size: 1.2rem;
    animation: bounce 0.6s ease;
}

.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ff6b6b);
    padding: 0.75rem;
    text-align: center;
    color: white;
    font-weight: 600;
    z-index: 998;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-text {
    font-size: 0.9rem;
}



.exit-intent .modal-content {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border: 2px solid var(--text-accent);
    animation: exitShake 0.8s ease-in-out;
}

@keyframes exitShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.exit-content {
    text-align: center;
    padding: 2rem;
}

.exit-header h2 {
    font-size: 2.2rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.exit-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.exit-offer {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.exit-offer h3 {
    font-size: 1.5rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.exit-offer p {
    margin-bottom: 1rem;
}

/* Girl card enhancements - simplified for performance */
.girl-card:hover {
    transform: translateY(-4px);
}

/* Enhanced status indicators */
.status-indicator.online {
    position: relative;
    overflow: visible;
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.4; }
    to { opacity: 0.8; }
}





/* Mobile Counter and Toast Positioning */
.online-counter {
    top: 80px;
    right: 20px;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

.notification-toast {
    bottom: 20px;
    left: 0;
    padding: 1rem 1.5rem;
}

.urgency-banner {
    font-size: 0.9rem;
    padding: 0.75rem;
}

@media (max-width: 768px) {
    .online-counter {
        top: 70px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .notification-toast {
        bottom: 10px;
        left: 0;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .urgency-banner {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
} 