/* ============================================
   Age Gate 18+ Modal
   ============================================ */

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.age-gate-overlay.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.age-gate-overlay:not(.hidden) {
    display: flex;
}

.age-gate-modal {
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.age-gate-title {
    font-size: 1.75rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.age-gate-question {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.age-gate-btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.age-gate-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-primary));
}

.age-gate-btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.age-gate-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
}

.age-gate-warning {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-sm);
    color: #ffc107;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .age-gate-modal {
        padding: 2rem 1.5rem;
    }
    
    .age-gate-title {
        font-size: 1.5rem;
    }
    
    .age-gate-question {
        font-size: 1.1rem;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .age-gate-btn {
        width: 100%;
    }
}

