/* Return to main site popup */
.return-popup {
    position: fixed;
    top: 16px;
    left: 16px;
    background-color: #1a1b26;
    border: 1px solid #7aa2f7;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.return-popup a {
    color: #7aa2f7;
    text-decoration: none;
    transition: color 0.15s ease;
}

.return-popup a:hover {
    color: #bb9af7;
}

.return-popup-close {
    background: none;
    border: none;
    color: #a9b1d6;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    line-height: 1;
    transition: color 0.15s ease;
}

.return-popup-close:hover {
    color: #f7768e;
}

.return-popup.hidden {
    display: none;
}
