/**
 * EMD Brand - Default Template
 * Age Gate with Blurred Official Site Screenshot
 */

* {
    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;
    --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;
}

/* ============================================
   AGE GATE - Full Viewport
   ============================================ */

.age-gate {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0a12;
    user-select: none;
}

.age-gate-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.age-gate-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: blur(3px) brightness(0.85);
    transform: scale(1.05);
    pointer-events: none;
}

.age-gate-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 60px;
    background: linear-gradient(135deg, var(--primary), #c72350);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    border-radius: 60px;
    box-shadow:
        0 0 0 4px rgba(255,255,255,0.15),
        0 15px 50px rgba(233, 69, 96, 0.5),
        0 0 80px rgba(233, 69, 96, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: btn-pulse 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.age-gate-btn:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 0 4px rgba(255,255,255,0.25),
        0 20px 60px rgba(233, 69, 96, 0.6),
        0 0 120px rgba(233, 69, 96, 0.3);
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(255,255,255,0.15),
            0 15px 50px rgba(233, 69, 96, 0.5),
            0 0 80px rgba(233, 69, 96, 0.2);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(255,255,255,0.1),
            0 15px 60px rgba(233, 69, 96, 0.7),
            0 0 120px rgba(233, 69, 96, 0.35);
    }
}

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

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

.seo-content h1 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.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;
}

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

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

.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;
}

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

.footer {
    padding: 50px 0 130px;
    background: var(--bg-soft);
    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,
.footer .lang-links a.active {
    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) {
    .age-gate-btn {
        padding: 18px 40px;
        font-size: 1.15rem;
        margin: 0 20px;
    }

    .seo-content h1 {
        font-size: 1.4rem;
    }

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

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

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