/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.age-verification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.age-verification-modal-content {
    position: relative;
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    margin: 10vh auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-verification-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.age-verification-header h2 {
    color: var(--nsfw-color);
    font-size: 2rem;
    margin: 0;
}

.age-verification-body {
    color: var(--text-light);
}

.warning-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.info-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.8;
}

.verification-form {
    margin-top: 1.5rem;
}

.verification-form .form-group {
    margin-bottom: 1rem;
}

.verification-form label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(139, 130, 76, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.verification-form label:hover {
    background: rgba(139, 130, 76, 0.2);
}

.verification-form input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.verification-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.verification-form .form-actions .btn {
    min-width: 150px;
    padding: 0.75rem 2rem;
}

@media (max-width: 768px) {
    .age-verification-modal-content {
        padding: 1.5rem;
        margin: 5vh auto;
    }
    
    .age-verification-header h2 {
        font-size: 1.5rem;
    }
    
    .warning-text {
        font-size: 1rem;
    }
}

