.user-connected-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 10, 45, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
}

.user-connected-modal {
    position: fixed;
    top: 24px;
    left: 24px;
    max-width: 320px;
    width: calc(100% - 48px);
    background: #4b1f8c;
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2001;
}

.user-connected-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.user-connected-later {
    border: 1px solid #ff2d2d;
    color: #ff2d2d;
    background: transparent;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 0.7rem;
    cursor: pointer;
}

.user-connected-help {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-connected-message {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.user-connected-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.user-connected-btn {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: 600;
    cursor: pointer;
}

.user-connected-btn-primary {
    color: #4b1f8c;
    background: #ffffff;
}

.user-connected-btn-secondary {
    color: #4b1f8c;
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
    .user-connected-modal {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
    }
}
