/**
 * Age Verification Modal
 * Lazy-loaded to prevent PageSpeed impact
 */

.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.age-verify-overlay.active {
    display: flex;
    opacity: 1;
}

.age-verify-modal {
    background: #ffffff;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-verify-overlay.active .age-verify-modal {
    transform: scale(1);
}

.age-verify-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.age-verify-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.age-verify-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verify-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.age-verify-yes {
    background: #2E7D32;
    color: white;
}

.age-verify-yes:hover {
    background: #266d2c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.age-verify-no {
    background: #ef4444;
    color: white;
}

.age-verify-no:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.age-verify-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .age-verify-modal {
        padding: 2rem 1.5rem;
    }

    .age-verify-title {
        font-size: 1.5rem;
    }

    .age-verify-buttons {
        flex-direction: column;
    }

    .age-verify-btn {
        width: 100%;
    }
}
