/**
 * EMD Brand - Adult Cam HF Template
 * Light Design - Gender Choice
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e94560;
    --secondary: #00d4ff;
    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    --bg-card: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #7a7a8a;
    --male-color: #3b82f6;
    --female-color: #ec4899;
    --border-color: #e5e7eb;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-soft);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION - Full Screen Gender Choice
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    filter: blur(15px) brightness(0.8);
    transform: scale(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.2) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 650px;
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    margin: 20px;
}

.logo {
    height: 55px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 30px;
}

/* Gender Buttons */
.gender-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.gender-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 45px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 160px;
}

.gender-btn.male {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.gender-btn.female {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.gender-btn:hover {
    transform: translateY(-6px) scale(1.03);
}

.gender-btn.male:hover {
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.gender-btn.female:hover {
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.5);
}

.gender-icon {
    font-size: 3.2rem;
    margin-bottom: 12px;
}

.gender-text {
    font-size: 1.15rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-badge {
    font-size: 0.85rem;
    color: var(--text-body);
    background: var(--bg-soft);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 70px 0;
    background: var(--bg-soft);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 45px;
    color: var(--text-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-soft);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ============================================
   SEO CONTENT
   ============================================ */

.seo-content {
    padding: 60px 0;
    background: var(--bg-light);
}

.seo-content h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.seo-content h3 {
    color: var(--text-dark);
    margin: 30px 0 15px;
    font-size: 1.25rem;
}

.seo-content p {
    color: var(--text-body);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.seo-content ul {
    color: var(--text-body);
    margin: 18px 0 18px 30px;
    font-size: 1rem;
}

.seo-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.seo-content a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 70px 0;
    background: var(--bg-soft);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 45px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    padding: 22px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: var(--bg-soft);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 25px 22px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 50px 0 130px;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer .disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.footer .links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer .links a:hover {
    color: var(--primary);
}

.footer .lang-links {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer .lang-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer .lang-links a:hover {
    color: var(--primary);
}

.footer .copy {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   STICKY CTA
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 40%, #ffffff 100%);
    z-index: 1000;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), #c72350);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.35);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
}

.cta-btn.blink {
    animation: blink-cta 1s ease-in-out infinite;
}

@keyframes blink-cta {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.35);
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 10px 50px rgba(233, 69, 96, 0.7);
        transform: scale(1.03);
    }
}

/* ============================================
   POPUP URGENCY
   ============================================ */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    margin: 20px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: popup-bounce 0.4s ease;
}

@keyframes popup-bounce {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.popup-close:hover {
    color: var(--text-dark);
}

.popup-urgency {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    animation: pulse-urgency 1.5s infinite;
}

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 25px;
}

.popup .cta-btn {
    width: 100%;
    margin-bottom: 15px;
}

.popup-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
    .hero-content {
        margin: 15px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

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

    .gender-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .gender-btn {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 22px;
    }

    .gender-icon {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        transform: translateY(0);
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 30px;
    }
}