/* Popup styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.popup-close:hover {
    color: #000;
}

.popup-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #010915;
    font-family: var(--rr-ff-urbanist);
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-family: var(--rr-ff-urbanist);
}

.popup-text ul {
    margin: 0 15px;
    color: var(--rr-text-body);
}

.popup-text p {
    margin-bottom: 15px;
}


.thinking-ai-6__title {
    cursor: pointer;
    transition: color 0.3s;
}

.thinking-ai-6__title:hover {
    color: #6698d2;
}

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